mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 05:45:22 +02:00
chore(sidebar): add data-cys [EE-3605] (#7143)
* chore(sidebar): add data-cys [EE-3605] fix [EE-3605]
This commit is contained in:
parent
ed8f9b5931
commit
882051cc30
10 changed files with 158 additions and 25 deletions
|
@ -6,10 +6,30 @@ import { SidebarSection } from './SidebarSection';
|
|||
export function EdgeComputeSidebar() {
|
||||
return (
|
||||
<SidebarSection title="Edge compute">
|
||||
<SidebarItem to="edge.devices" label="Edge Devices" icon={Box} />
|
||||
<SidebarItem to="edge.groups" label="Edge Groups" icon={Grid} />
|
||||
<SidebarItem to="edge.stacks" label="Edge Stacks" icon={Layers} />
|
||||
<SidebarItem to="edge.jobs" label="Edge Jobs" icon={Clock} />
|
||||
<SidebarItem
|
||||
to="edge.devices"
|
||||
label="Edge Devices"
|
||||
icon={Box}
|
||||
data-cy="portainerSidebar-edgeDevices"
|
||||
/>
|
||||
<SidebarItem
|
||||
to="edge.groups"
|
||||
label="Edge Groups"
|
||||
icon={Grid}
|
||||
data-cy="portainerSidebar-edgeGroups"
|
||||
/>
|
||||
<SidebarItem
|
||||
to="edge.stacks"
|
||||
label="Edge Stacks"
|
||||
icon={Layers}
|
||||
data-cy="portainerSidebar-edgeStacks"
|
||||
/>
|
||||
<SidebarItem
|
||||
to="edge.jobs"
|
||||
label="Edge Jobs"
|
||||
icon={Clock}
|
||||
data-cy="portainerSidebar-edgeJobs"
|
||||
/>
|
||||
</SidebarSection>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue