summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/src/App.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/App.jsx b/web/src/App.jsx
index 8125fea39..4762175c6 100644
--- a/web/src/App.jsx
+++ b/web/src/App.jsx
@@ -340,7 +340,7 @@ class App extends React.Component {
render() {
const { isKebabDropdownOpen } = this.state
- const { notifications, configErrors, tenant, info } = this.props
+ const { notifications, configErrors, tenant, info, auth } = this.props
const nav = this.renderMenu()
@@ -454,7 +454,7 @@ class App extends React.Component {
<SelectTz />
<ConfigModal />
- {tenant.name && (<AuthContainer />)}
+ {auth.info && auth.info.default_realm && (<AuthContainer />)}
</PageHeaderTools>
)