gd-bs 6.9.21 → 6.9.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -194,16 +194,17 @@ class _Table extends Base {
194
194
  // Method to update a row element
195
195
  updateRow(elRow, row, hiddenColIndexes) {
196
196
  // Parse the columns
197
+ let colIdx = 0;
197
198
  for (let i = 0; i < this.props.columns.length; i++) {
198
199
  // See if this column is hidden
199
200
  if (hiddenColIndexes && hiddenColIndexes.indexOf(i) >= 0) {
200
201
  continue;
201
202
  }
202
203
  // Get the column element
203
- let elCol = elRow.children[i];
204
+ let elCol = elRow.children[colIdx++];
204
205
  if (elCol) {
205
206
  // Update the column
206
- this.updateColumn(elCol, i, row);
207
+ this.updateColumn(elCol, colIdx, row);
207
208
  }
208
209
  }
209
210
  // See if there is an event