fix(接口测试): 高级筛选-修改状态字段下拉值的类型为boolean

This commit is contained in:
teukkk 2024-10-29 19:16:39 +08:00 committed by Craftsman
parent 8803147b1e
commit b4c2825ca8
3 changed files with 6 additions and 6 deletions

View File

@ -367,8 +367,8 @@
type: FilterType.BOOLEAN, type: FilterType.BOOLEAN,
selectProps: { selectProps: {
options: [ options: [
{ label: t('case.withoutChanges'), value: 'false' }, { label: t('case.withoutChanges'), value: false },
{ label: t('case.withChanges'), value: 'true' }, { label: t('case.withChanges'), value: true },
], ],
}, },
}, },

View File

@ -725,8 +725,8 @@
type: FilterType.BOOLEAN, type: FilterType.BOOLEAN,
selectProps: { selectProps: {
options: [ options: [
{ label: t('case.withoutChanges'), value: 'false' }, { label: t('case.withoutChanges'), value: false },
{ label: t('case.withChanges'), value: 'true' }, { label: t('case.withChanges'), value: true },
], ],
}, },
}, },

View File

@ -499,8 +499,8 @@
type: FilterType.BOOLEAN, type: FilterType.BOOLEAN,
selectProps: { selectProps: {
options: [ options: [
{ label: t('system.config.email.close'), value: 'false' }, { label: t('system.config.email.close'), value: false },
{ label: t('system.config.email.open'), value: 'true' }, { label: t('system.config.email.open'), value: true },
], ],
}, },
}, },