mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(lists-table): 📦🐛 fix antd onChange filters type
ref https://github.com/ant-design/ant-design/pull/28220
This commit is contained in:
parent
206366cb9d
commit
c9a3613ce1
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ export const ListsTable = (props: RouteComponentProps & Props) => {
|
|||
}}
|
||||
onChange={(
|
||||
_pagination: TablePaginationConfig,
|
||||
_filters: Record<string, Key[] | null>,
|
||||
_filters: Record<string, (Key | boolean)[] | null>,
|
||||
_sorter: SorterResult<List> | SorterResult<List>[],
|
||||
extra: TableCurrentDataSource<List>
|
||||
) => setVisibleLists(extra.currentDataSource)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue