summaryrefslogtreecommitdiff
path: root/src/components/_ibs/AppNavigation/AppNavigationMixin.js
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-07-12 12:16:20 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-07-12 12:16:20 +0300
commit9778e2196fceff98b30d922fef1cd5afc4af2f31 (patch)
tree6c642219ec4f035a396bf6d20fd1842b90c3e9d0 /src/components/_ibs/AppNavigation/AppNavigationMixin.js
parentf12e602ab84f2a4ae28a064ed2058f57b9cf9bc3 (diff)
downloadwebui-vue-9778e2196fceff98b30d922fef1cd5afc4af2f31.tar.xz
move security&access to end
Diffstat (limited to 'src/components/_ibs/AppNavigation/AppNavigationMixin.js')
-rw-r--r--src/components/_ibs/AppNavigation/AppNavigationMixin.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/components/_ibs/AppNavigation/AppNavigationMixin.js b/src/components/_ibs/AppNavigation/AppNavigationMixin.js
index bbbbb1ee..b2464224 100644
--- a/src/components/_ibs/AppNavigation/AppNavigationMixin.js
+++ b/src/components/_ibs/AppNavigation/AppNavigationMixin.js
@@ -131,6 +131,18 @@ const AppNavigationMixin = {
],
},
{
+ id: 'resource-management',
+ label: this.$t('appNavigation.resourceManagement'),
+ icon: 'iconResourceManagement',
+ children: [
+ {
+ id: 'power',
+ label: this.$t('appNavigation.power'),
+ route: '/resource-management/power',
+ },
+ ],
+ },
+ {
id: 'security-and-access',
label: this.$t('appNavigation.securityAndAccess'),
icon: 'iconSecurityAndAccess',
@@ -162,18 +174,6 @@ const AppNavigationMixin = {
},
],
},
- {
- id: 'resource-management',
- label: this.$t('appNavigation.resourceManagement'),
- icon: 'iconResourceManagement',
- children: [
- {
- id: 'power',
- label: this.$t('appNavigation.power'),
- route: '/resource-management/power',
- },
- ],
- },
],
};
},