summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-07-12 15:38:03 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-07-12 15:38:03 +0300
commit587d6639896bd21869ff53ec3fcf96ae7228771f (patch)
tree6f5a51be17e401b571844b80eefa794eddbd9774
parent9d8e5a7ef45989209f26a7e93ee03cbf7ea4c599 (diff)
downloadwebui-vue-587d6639896bd21869ff53ec3fcf96ae7228771f.tar.xz
move security&access to end only for _sila
-rw-r--r--src/components/_sila/AppNavigation/AppNavigationMixin.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/components/_sila/AppNavigation/AppNavigationMixin.js b/src/components/_sila/AppNavigation/AppNavigationMixin.js
index bbbbb1ee..b2464224 100644
--- a/src/components/_sila/AppNavigation/AppNavigationMixin.js
+++ b/src/components/_sila/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',
- },
- ],
- },
],
};
},