fix(components): [table] fix clearFilter type (#13149)

This commit is contained in:
Masanori Doizaki 2023-06-08 22:49:13 +09:00 committed by GitHub
parent d4d24eb9d7
commit 4218ef2594
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ function useUtils<T>(store: Store<T>) {
const clearSelection = () => {
store.clearSelection()
}
const clearFilter = (columnKeys: string[]) => {
const clearFilter = (columnKeys?: string[]) => {
store.clearFilter(columnKeys)
}
const toggleAllSelection = () => {