Skip to content

Commit

Permalink
Ensure redraw does not error out if tabulator undefined (#6930)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Jun 19, 2024
1 parent d8975e9 commit cd9e0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/models/tabulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ export class DataTabulatorView extends HTMLBoxView {
}

redraw(columns: boolean = true, rows: boolean = true): void {
if (this._building) {
if (this._building || this.tabulator != null) {
return
}
if (columns && (this.tabulator.columnManager.element != null)) {
Expand Down

0 comments on commit cd9e0c5

Please sign in to comment.