fix ts error

This commit is contained in:
afc163 2016-12-03 15:51:44 +08:00
parent 8df23e2d06
commit 82902855db

View File

@ -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;
}