fix: Remove priority fields in ACL components

This commit is contained in:
w940853815
2025-09-16 17:43:32 +08:00
committed by wrd
parent c8b866412a
commit 396d20f31e
3 changed files with 3 additions and 6 deletions

View File

@@ -18,16 +18,13 @@ export default {
return {
initial: {},
fields: [
[this.$t('Basic'), ['name', 'priority']],
[this.$t('Basic'), ['name']],
[this.$t('Users'), ['users']],
[this.$t('ConnectMethod'), ['connect_methods']],
[this.$t('Action'), ['action', 'reviewers']],
[this.$t('Other'), ['is_active', 'comment']]
],
fieldsMeta: {
priority: {
rules: [rules.Required]
},
assets: assetJSONSelectMeta(this),
users: userJSONSelectMeta(this, true),
connect_methods: {

View File

@@ -34,7 +34,7 @@ export default {
key: this.$t('Reviewer'),
value: this.object.reviewers.map(item => item.name).join(', ')
},
'priority', 'date_created', 'created_by', 'comment'
'date_created', 'created_by', 'comment'
]
}
},

View File

@@ -17,7 +17,7 @@ export default {
columnsShow: {
min: ['name', 'actions'],
default: [
'name', 'priority', 'is_active', 'comment', 'actions'
'name', 'is_active', 'comment', 'actions'
]
},
columnsMeta: {