diff --git a/src/views/accounts/Automation/BaseExecutionList.vue b/src/views/accounts/Automation/BaseExecutionList.vue index 2b89546a1..e26f71d18 100644 --- a/src/views/accounts/Automation/BaseExecutionList.vue +++ b/src/views/accounts/Automation/BaseExecutionList.vue @@ -121,6 +121,20 @@ export default { vm.visible = true vm.reportUrl = `${this.url}${row.id}/report/` } + }, + { + name: 'record', + title: this.$t('Record'), + can: this.$hasPerm('accounts.view_changesecretrecord'), + callback: function({ row }) { + return this.$router.push({ + name: 'AccountChangeSecretList', + query: { + tab: 'ChangeSecretRecord', + execution_id: row.id + } + }) + } } ] }