Skip to content

Commit

Permalink
fix issue with autocolumns load on initial data set
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Mar 19, 2024
1 parent 205da18 commit b6858a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/js/tabulator_esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -28300,11 +28300,11 @@ class Tabulator extends ModuleBinder{
this._buildElement();

this._initializeTable();

this.initialized = true;

this._loadInitialData()
.finally(() => {
this.initialized = true;

this.eventBus.dispatch("table-initialized");
this.externalEvents.dispatch("tableBuilt");
});
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tabulator_esm.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/js/core/Tabulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ class Tabulator extends ModuleBinder{
this._buildElement();

this._initializeTable();

this.initialized = true;

this._loadInitialData()
.finally(() => {
this.initialized = true;

this.eventBus.dispatch("table-initialized");
this.externalEvents.dispatch("tableBuilt");
});
Expand Down

0 comments on commit b6858a8

Please sign in to comment.