diff --git a/awx/ui_next/src/components/ContentError/ContentError.jsx b/awx/ui_next/src/components/ContentError/ContentError.jsx
index 7b0e6c8f75..a94adc4ac9 100644
--- a/awx/ui_next/src/components/ContentError/ContentError.jsx
+++ b/awx/ui_next/src/components/ContentError/ContentError.jsx
@@ -1,5 +1,6 @@
import React from 'react';
import styled from 'styled-components';
+import { Link } from 'react-router-dom';
import { bool, instanceOf } from 'prop-types';
import { t } from '@lingui/macro';
import { withI18n } from '@lingui/react';
@@ -42,8 +43,8 @@ function ContentError({ error, children, isNotFound, i18n }) {
? i18n._(t`The page you requested could not be found.`)
: i18n._(
t`There was an error loading this content. Please reload the page.`
- )}
- {children}
+ )}{' '}
+ {children || {i18n._(t`Back to Dashboard.`)}}
{error && }