Skip to content

Commit

Permalink
perf: perm filter translate
Browse files Browse the repository at this point in the history
  • Loading branch information
feng626 committed Feb 10, 2025
1 parent 5d5e875 commit e93979a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/perms/const.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ export const UserAssetPermissionListPageSearchConfigOptions = [
{ label: i18n.t('AssetAddress'), value: 'address' },
{ label: i18n.t('Account'), value: 'accounts' },
{
label: i18n.t('isValid'), value: 'is_valid',
label: i18n.t('Valid'), value: 'is_valid',
children: [
{ value: '1', label: i18n.t('Yes') },
{ value: '0', label: i18n.t('No') }
]
},
{
label: i18n.t('isEffective'), value: 'is_effective',
label: i18n.t('Effective'), value: 'is_effective',
children: [
{ value: '1', label: i18n.t('Yes') },
{ value: '0', label: i18n.t('No') }
]
},
{
label: i18n.t('fromTicket'), value: 'from_ticket',
label: i18n.t('FromTicket'), value: 'from_ticket',
children: [
{ value: '1', label: i18n.t('Yes') },
{ value: '0', label: i18n.t('No') }
Expand Down

0 comments on commit e93979a

Please sign in to comment.