2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-18 18:56:31 +00:00

Bug fix for build output table (#9946)

- Ensure records are cleared after bulk operation
This commit is contained in:
Oliver
2025-07-03 13:32:41 +10:00
committed by GitHub
parent ee3a574029
commit ededeeee00
3 changed files with 13 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ import type { FilterSetState } from './Filters';
*/
export type TableState = {
tableKey: string;
refreshTable: () => void;
refreshTable: (clearSelected?: boolean) => void;
isLoading: boolean;
setIsLoading: (value: boolean) => void;
filterSet: FilterSetState;