diff --git a/frontend/src/metabase/nav/containers/Navbar.jsx b/frontend/src/metabase/nav/containers/Navbar.jsx index 159f745ceb22bce2dcb030c2c6772df0f983e274..537d6ff127cc9b0146e381f7013528dcd8b2ca76 100644 --- a/frontend/src/metabase/nav/containers/Navbar.jsx +++ b/frontend/src/metabase/nav/containers/Navbar.jsx @@ -163,15 +163,19 @@ export default class Navbar extends Component { </Link> } items={[ - { - title: t`Question`, - icon: `insight`, - link: Urls.newQuestion({ - mode: "notebook", - creationType: "complex_question", - }), - event: `NavBar;New Question Click;`, - }, + ...(hasDataAccess + ? [ + { + title: t`Question`, + icon: `insight`, + link: Urls.newQuestion({ + mode: "notebook", + creationType: "complex_question", + }), + event: `NavBar;New Question Click;`, + }, + ] + : []), ...(hasNativeWrite ? [ {