@linzjs/step-ag-grid 27.2.1 → 27.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/step-ag-grid.cjs
CHANGED
|
@@ -5518,6 +5518,9 @@ const GridContextProvider = (props) => {
|
|
|
5518
5518
|
}
|
|
5519
5519
|
}, 50), [gridApi]);
|
|
5520
5520
|
const onFilterChanged = React.useMemo(() => debounce(() => {
|
|
5521
|
+
if (!gridApi || gridApi?.isDestroyed()) {
|
|
5522
|
+
return;
|
|
5523
|
+
}
|
|
5521
5524
|
// This is terrible, but there's no other way for me to check whether a filter has changed the grid
|
|
5522
5525
|
const getDisplayedRowsHash = () => {
|
|
5523
5526
|
const arr = [];
|