diff --git a/ui/src/config/section/iam.js b/ui/src/config/section/iam.js index eb76ca6a6f8..c6ac178ab5f 100644 --- a/ui/src/config/section/iam.js +++ b/ui/src/config/section/iam.js @@ -99,14 +99,14 @@ export default { name: 'certificate', component: () => import('@/views/iam/SSLCertificateTab.vue') }, - { - name: 'Settings', - component: () => import('@/components/view/SettingsTab.vue') - }, { name: 'limits', show: (record, route, user) => { return ['Admin'].includes(user.roletype) }, component: () => import('@/components/view/ResourceLimitTab.vue') + }, + { + name: 'settings', + component: () => import('@/components/view/SettingsTab.vue') } ], actions: [ @@ -239,14 +239,15 @@ export default { { name: 'details', component: () => import('@/components/view/DetailsTab.vue') - }, { - name: 'Settings', - component: () => import('@/components/view/SettingsTab.vue') }, { name: 'limits', show: (record, route, user) => { return ['Admin'].includes(user.roletype) }, component: () => import('@/components/view/ResourceLimitTab.vue') + }, + { + name: 'settings', + component: () => import('@/components/view/SettingsTab.vue') } ], treeView: true,