mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
fix ts error
This commit is contained in:
parent
8df23e2d06
commit
82902855db
@ -807,7 +807,7 @@ export default class Table<T> extends React.Component<TableProps<T>, any> {
|
||||
// 筛选
|
||||
if (state.filters) {
|
||||
Object.keys(state.filters).forEach((columnKey) => {
|
||||
let col = this.findColumn(columnKey);
|
||||
let col = this.findColumn(columnKey) as any;
|
||||
if (!col) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user