diff --git a/src/views/pam/RiskDetect/AccountCheckTaskList.vue b/src/views/pam/RiskDetect/AccountCheckTaskList.vue index b25eaff3b..63c7df8e8 100644 --- a/src/views/pam/RiskDetect/AccountCheckTaskList.vue +++ b/src/views/pam/RiskDetect/AccountCheckTaskList.vue @@ -9,7 +9,7 @@ import { GenericListTable } from '@/layout/components' import AmountFormatter from '@/components/Table/TableFormatters/AmountFormatter.vue' export default { - name: 'AccountPushList', + name: 'AccountCheckTaskList', components: { GenericListTable }, diff --git a/src/views/pam/RiskDetect/index.vue b/src/views/pam/RiskDetect/index.vue index dcb4a0280..f7bce8bf9 100644 --- a/src/views/pam/RiskDetect/index.vue +++ b/src/views/pam/RiskDetect/index.vue @@ -24,19 +24,19 @@ export default { { title: this.$t('DetectTasks'), name: 'AccountCheckTask', - hidden: !this.$hasPerm('accounts.view_accountcheckautomation'), + hidden: !this.$hasPerm('accounts.view_checkaccountautomation'), component: () => import('./AccountCheckTaskList.vue') }, { title: this.$t('Executions'), name: 'AccountCheckExecution', - hidden: !this.$hasPerm('accounts.view_accountcheckautomation'), + hidden: !this.$hasPerm('accounts.view_checkaccountautomation'), component: () => import('./AccountCheckExecutionList.vue') }, { title: this.$t('DetectEngines'), name: 'AccountCheckEngine', - hidden: !this.$hasPerm('accounts.view_accountcheckautomation'), + hidden: !this.$hasPerm('accounts.view_checkaccountautomation'), component: () => import('@/views/pam/RiskDetect/AccountCheckEngine.vue') } ]