Skip to content

Commit

Permalink
Call updateCellsArray() every time the grid is modified
Browse files Browse the repository at this point in the history
  • Loading branch information
ddimaria committed Nov 29, 2023
1 parent 4c8cda0 commit 0feea9e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quadratic-client/src/gridGL/cells/CellsSheets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export class CellsSheets extends Container<CellsSheet> {
for (const cellSheet of this.children) {
const modified = cellSheetsModified.filter((modified) => modified.sheet_id === cellSheet.sheet.id);
if (modified.length) {
cellSheet.updateCellsArray();
cellSheet.modified(modified);
}
}
Expand Down

0 comments on commit 0feea9e

Please sign in to comment.