mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 05:45:22 +02:00
fix(edge/waitingroom): hide sidebar when disabled [EE-6003] (#10343)
This commit is contained in:
parent
20823a7f27
commit
5f9687a361
2 changed files with 21 additions and 3 deletions
|
@ -1,11 +1,21 @@
|
|||
import { Box, Clock, LayoutGrid, Layers } from 'lucide-react';
|
||||
import { Box, Clock, LayoutGrid, Layers, Puzzle } from 'lucide-react';
|
||||
|
||||
import { isBE } from '../portainer/feature-flags/feature-flags.service';
|
||||
import { useSettings } from '../portainer/settings/queries';
|
||||
|
||||
import { SidebarItem } from './SidebarItem';
|
||||
import { SidebarSection } from './SidebarSection';
|
||||
|
||||
export function EdgeComputeSidebar() {
|
||||
// this sidebar is rendered only for admins, so we can safely assume that settingsQuery will succeed
|
||||
const settingsQuery = useSettings();
|
||||
|
||||
if (!settingsQuery.data || !settingsQuery.data.EnableEdgeComputeFeatures) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const settings = settingsQuery.data;
|
||||
|
||||
return (
|
||||
<SidebarSection title="Edge compute">
|
||||
<SidebarItem
|
||||
|
@ -27,6 +37,14 @@ export function EdgeComputeSidebar() {
|
|||
data-cy="portainerSidebar-edgeJobs"
|
||||
/>
|
||||
{isBE && (
|
||||
<SidebarItem
|
||||
to="edge.configurations"
|
||||
label="Edge Configurations"
|
||||
icon={Puzzle}
|
||||
data-cy="portainerSidebar-edgeConfigurations"
|
||||
/>
|
||||
)}
|
||||
{isBE && !settings.TrustOnFirstConnect && (
|
||||
<SidebarItem
|
||||
to="edge.devices.waiting-room"
|
||||
label="Waiting Room"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue