Skip to content

Commit

Permalink
🐛 (Table): fix filters define in onChange
Browse files Browse the repository at this point in the history
close #20270
  • Loading branch information
MrHeer committed Dec 18, 2019
1 parent 7a2d1f2 commit 8a4301b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/interface.tsx
Expand Up @@ -190,7 +190,7 @@ export interface TableProps<T> {
onExpand?: (expanded: boolean, record: T) => void;
onChange?: (
pagination: PaginationConfig,
filters: Record<keyof T, string[]>,
filters: Partial<Record<keyof T, string[]>>,
sorter: SorterResult<T>,
extra: TableCurrentDataSource<T>,
) => void;
Expand Down

0 comments on commit 8a4301b

Please sign in to comment.