summaryrefslogtreecommitdiff
path: root/web/src/App.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/App.jsx')
-rw-r--r--web/src/App.jsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/web/src/App.jsx b/web/src/App.jsx
index 207417c96..bd640f772 100644
--- a/web/src/App.jsx
+++ b/web/src/App.jsx
@@ -443,11 +443,10 @@ class App extends React.Component {
const logoUrl = tenant.name ? tenant.defaultRoute : '/'
const pageHeader = (
<PageHeader
- logo={<Brand src={logo} alt='Zuul logo' className="zuul-brand" />}
+ logo={<Brand src={logo} alt='Zuul logo' />}
logoProps={{ to: logoUrl }}
logoComponent={Link}
headerTools={pageHeaderTools}
- topNav={nav}
/>
)
@@ -455,7 +454,7 @@ class App extends React.Component {
<React.Fragment>
{notifications.length > 0 && this.renderNotifications(notifications)}
{this.renderConfigErrors(configErrors)}
- <Page header={pageHeader}>
+ <Page className="zuul-page" header={pageHeader} tertiaryNav={nav}>
<ErrorBoundary>
{this.renderContent()}
</ErrorBoundary>