We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0cadf3 commit 29b7aafCopy full SHA for 29b7aaf
npm-packages/dashboard-common/src/layouts/DeploymentDashboardLayout.tsx
@@ -140,8 +140,13 @@ export function DeploymentDashboardLayout({
140
return (
141
<FunctionsProvider>
142
<div className="flex h-full grow flex-col overflow-y-hidden">
143
- <PauseBanner />
144
- <NodeVersionBanner />
+ {visiblePages === undefined ||
+ (visiblePages.includes("settings") && (
145
+ <>
146
+ <PauseBanner />
147
+ <NodeVersionBanner />
148
+ </>
149
+ ))}
150
<div className="flex h-full flex-col overflow-y-auto sm:flex-row">
151
{sidebarItems.length > 0 && (
152
<Sidebar
0 commit comments