fix(BasicTable): ColumnSettings.vue columnOptions typeof lost (#3941)
This commit is contained in:
parent
64a4992a84
commit
dd1b16acdc
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue