fix(BasicTable): ColumnSettings.vue columnOptions typeof lost (#3941)

This commit is contained in:
Allure-eve 2024-07-04 08:50:58 +08:00 committed by GitHub
parent 64a4992a84
commit dd1b16acdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -540,13 +540,13 @@
label:
typeof col.title === 'string'
? col.title
: col.customTitle === 'string'
: typeof col.customTitle === 'string'
? col.customTitle
: '',
value:
typeof col.dataIndex === 'string'
? col.dataIndex
: col.title === 'string'
: typeof col.title === 'string'
? col.title
: '',
column: {