diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.jsx
index 4c290adb41..241175be36 100644
--- a/awx/ui_next/src/components/AppContainer/AppContainer.jsx
+++ b/awx/ui_next/src/components/AppContainer/AppContainer.jsx
@@ -138,10 +138,12 @@ function AppContainer({ i18n, navRouteConfig = [], children }) {
}
}, [handleLogout, timeRemaining]);
+ const brandName = config?.license_info?.product_name || 'brand';
+
const header = (
}
+ logo={}
logoProps={{ href: '/' }}
headerTools={
;
+const BrandLogo = ({ alt }) => (
+
+);
export default BrandLogo;
diff --git a/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx b/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx
index 797c10673d..1a0f07fb27 100644
--- a/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx
+++ b/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx
@@ -70,6 +70,7 @@ function VariablesDetail({ dataCy, helpText, value, label, rows, i18n }) {
css="grid-column: 1 / -1"
>
-
+
+
{tabsArray.map(tab => (
{tab.name}}
- role="tab"
/>
))}
diff --git a/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.jsx b/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.jsx
index 55c265cf0d..b9c902c4a8 100644
--- a/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.jsx
+++ b/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.jsx
@@ -98,7 +98,7 @@ function ProjectListItem({
/>
-
+
{project.name}
|