Skip to content

Commit

Permalink
BUGFIX: block same-table update propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethbruskiewicz committed Oct 1, 2024
1 parent 81efcc8 commit c88f698
Show file tree
Hide file tree
Showing 3 changed files with 179 additions and 132 deletions.
7 changes: 7 additions & 0 deletions lib/DataHarmonizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,13 @@ class DataHarmonizer {
}
}


updateColumnSettings(columnIndex, options) {
const currentColumns = this.hot.getSettings().columns || [];
currentColumns[columnIndex] = { ...currentColumns[columnIndex], ...options };
this.hot.updateSettings({ columns: currentColumns });
}

addRowsToBottom(numRows) {
// Get the starting row index where the new rows will be added
const startRowIndex = this.hot.countRows();
Expand Down
Loading

0 comments on commit c88f698

Please sign in to comment.