Skip to content

Commit

Permalink
HPCC-32713 ECL Watch v9 fix WU list not sorting
Browse files Browse the repository at this point in the history
fix an issue with the Grid's use of request abort signals

Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Sep 24, 2024
1 parent 71c6b9b commit 15a347c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/controls/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const FluentStoreGrid: React.FunctionComponent<FluentStoreGridProps> = ({
setItems(items);
selectedIndices.forEach(index => selectionHandler.setIndexSelected(index, true, false));
});
}, [count, selectionHandler, start, store], [query, sorted]);
}, [abortController?.current?.signal, count, selectionHandler, start, store], [query, sorted]);

React.useEffect(() => {
// Dummy line to ensure its included in the dependency array ---
Expand Down

0 comments on commit 15a347c

Please sign in to comment.