Skip to content

Commit

Permalink
fix issue with renderer warnings after setHeight function called
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Feb 18, 2024
1 parent d9cdc87 commit 626ff0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -27915,7 +27915,7 @@ class Tabulator {
this.options.height = isNaN(height) ? height : height + "px";
this.element.style.height = this.options.height;
this.rowManager.initializeRenderer();
this.rowManager.redraw();
this.rowManager.redraw(true);
}

//////////////////// Event Bus ///////////////////
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/core/Tabulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ class Tabulator {
this.options.height = isNaN(height) ? height : height + "px";
this.element.style.height = this.options.height;
this.rowManager.initializeRenderer();
this.rowManager.redraw();
this.rowManager.redraw(true);
}

//////////////////// Event Bus ///////////////////
Expand Down

0 comments on commit 626ff0f

Please sign in to comment.