Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/iris-grid/src/IrisGridModelUpdater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ function IrisGridModelUpdater({
model.rollupConfig = rollupConfig;
}
},
[model, rollupConfig]
// eslint-disable-next-line react-hooks/exhaustive-deps
[model, model.rollupConfig, rollupConfig]
Comment thread
AkshatJawne marked this conversation as resolved.
Outdated
);
useOnChange(
function updateSelectDistinctColumns() {
Expand All @@ -159,7 +160,8 @@ function IrisGridModelUpdater({
model.totalsConfig = totalsConfig;
}
},
[model, totalsConfig]
// eslint-disable-next-line react-hooks/exhaustive-deps
[model, model.isTotalsAvailable, totalsConfig]
);
useOnChange(
function updatePendingRowCount() {
Expand Down