fix: Update IP group display format in detail view

This commit is contained in:
w940853815
2025-03-18 15:10:50 +08:00
committed by w940853815
parent 7664487a1c
commit 1d288f6212

View File

@@ -54,12 +54,12 @@ export default {
'name', 'user_display',
{
key: vm.$t('IpGroup'),
value: () => vm.object.rules.ip_group.toString()
value: vm.object.rules.ip_group.join(', ')
},
'dataVal', 'action_display', 'priority', 'date_created', 'created_by',
{
key: vm.$t('LoginConfirmUser'),
value: () => vm.object.reviewers.map(item => item.name).join(', ')
value: vm.object.reviewers.map(item => item.name).join(', ')
},
'comment'
]