From c86b98e6829073cf27e0852eca088273611b17d3 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Thu, 13 Jan 2022 18:38:02 +0530 Subject: [PATCH] ui: show account configure limits tab for domain-admin (#5858) Fixes #5676 Signed-off-by: Abhishek Kumar --- ui/src/config/section/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/config/section/account.js b/ui/src/config/section/account.js index 1b919035e0f..701553ab789 100644 --- a/ui/src/config/section/account.js +++ b/ui/src/config/section/account.js @@ -39,7 +39,7 @@ export default { }, { name: 'limits', - show: (record, route, user) => { return ['Admin'].includes(user.roletype) }, + show: (record, route, user) => { return ['Admin', 'DomainAdmin'].includes(user.roletype) }, component: () => import('@/components/view/ResourceLimitTab.vue') }, {