gd-bs 6.9.22 → 6.9.23
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.
|
@@ -201,11 +201,13 @@ class _Table extends Base {
|
|
|
201
201
|
continue;
|
|
202
202
|
}
|
|
203
203
|
// Get the column element
|
|
204
|
-
let elCol = elRow.children[colIdx
|
|
204
|
+
let elCol = elRow.children[colIdx];
|
|
205
205
|
if (elCol) {
|
|
206
206
|
// Update the column
|
|
207
207
|
this.updateColumn(elCol, colIdx, row);
|
|
208
208
|
}
|
|
209
|
+
// Increment the column index
|
|
210
|
+
colIdx++;
|
|
209
211
|
}
|
|
210
212
|
// See if there is an event
|
|
211
213
|
if (this.props.onRenderRow) {
|