diff --git a/src/components/Table/TableFormatters/DiscoverConfirmFormatter.vue b/src/components/Table/TableFormatters/DiscoverConfirmFormatter.vue index 0c58172db..ba31581f8 100644 --- a/src/components/Table/TableFormatters/DiscoverConfirmFormatter.vue +++ b/src/components/Table/TableFormatters/DiscoverConfirmFormatter.vue @@ -119,17 +119,17 @@ export default { // }, { name: 'delete_remote', - label: this.$t('Delete remote account'), + label: this.$t('DeleteRemoteAccount'), has: this.row.remote_present }, { name: 'add_account', - label: this.$t('Add account'), + label: this.$t('AddAccount'), has: !this.row.present }, { name: 'change_password_add', - label: this.$t('Add account after changing password'), + label: this.$t('AddAccountAfterChangingPassword'), has: !this.row.present } ] diff --git a/src/router/pam/automations.js b/src/router/pam/automations.js index e2d7b12f8..4d0dd27ce 100644 --- a/src/router/pam/automations.js +++ b/src/router/pam/automations.js @@ -85,10 +85,10 @@ export default [ { path: 'account/:id', component: () => import('@/views/accounts/AccountDiscover/AccountDetail/index.vue'), - name: 'AccountDiscoverAccountDetail', + name: 'DiscoverAccountDetail', hidden: true, meta: { - title: i18n.t('AccountDiscoverAccountDetail'), + title: i18n.t('DiscoverAccountDetail'), permissions: ['accounts.view_gatheraccountsexecution'] } } diff --git a/src/views/accounts/const.js b/src/views/accounts/const.js index 8f1d74e0a..003f05a90 100644 --- a/src/views/accounts/const.js +++ b/src/views/accounts/const.js @@ -41,7 +41,7 @@ export const gatherAccountTableConfig = (vm, url) => { can: true, getRoute({ row }) { return { - name: 'AccountDiscoverAccountDetail', + name: 'DiscoverAccountDetail', params: { id: row.id } } },