Fix legacy options not being read for some widgets

This commit is contained in:
nathangray
2020-03-30 10:28:48 -06:00
parent c937f50193
commit 1da1cb7b99
42 changed files with 320 additions and 323 deletions

View File

@ -382,10 +382,10 @@ var et2_dataview = /** @class */ (function () {
// Create the collection of column ids
var colIds = [];
for (var i = 0; i < this.columns.length; i++) {
if (this.columns[i].visible) {
colIds[i] = this.columns[i].id;
}
}
if (this.columns[i].visible) {
colIds[i] = this.columns[i].id;
}
}
// Create the row provider
if (this.rowProvider) {
this.rowProvider.destroy();