diff --git a/src/views/acl/CommandAcl/CommandFilterAcl/CommandFilterAclDetail/Detail.vue b/src/views/acl/CommandAcl/CommandFilterAcl/CommandFilterAclDetail/Detail.vue index 375903bde..d9f9bb9b4 100644 --- a/src/views/acl/CommandAcl/CommandFilterAcl/CommandFilterAclDetail/Detail.vue +++ b/src/views/acl/CommandAcl/CommandFilterAcl/CommandFilterAclDetail/Detail.vue @@ -43,9 +43,17 @@ export default { }, { key: this.$t('acl.CommandGroup'), - value: this.object.command_groups.map((item) => { return item.name }).join(', ') + value: this.object.command_groups.map((item) => item.name).join(', ') }, - 'comment' + { + key: this.$t('acl.action'), + value: this.object.action?.label + }, + (this.object.action?.value === 'review' && { + key: this.$t('acl.reviewer'), + value: this.object?.reviewers.map((item) => item?.name).join(', ') + }), + 'priority', 'is_active', 'comment' ] } },