fix: table sticky type error, close #4804
parent
7e9e5af63f
commit
40f361fe1f
|
@ -171,7 +171,7 @@ export const tableProps = () => {
|
||||||
default: undefined,
|
default: undefined,
|
||||||
},
|
},
|
||||||
rowExpandable: { type: Function as PropType<TableProps['rowExpandable']>, default: undefined },
|
rowExpandable: { type: Function as PropType<TableProps['rowExpandable']>, default: undefined },
|
||||||
sticky: { type: String as PropType<TableProps['sticky']>, default: undefined },
|
sticky: { type: [Boolean, Object] as PropType<TableProps['sticky']>, default: undefined },
|
||||||
|
|
||||||
dropdownPrefixCls: String,
|
dropdownPrefixCls: String,
|
||||||
dataSource: { type: Array as PropType<RcTableProps['data']>, default: undefined },
|
dataSource: { type: Array as PropType<RcTableProps['data']>, default: undefined },
|
||||||
|
|
Loading…
Reference in New Issue