gd-bs 6.9.23 → 6.9.24
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,13 +201,11 @@ 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
|
-
this.updateColumn(elCol,
|
|
207
|
+
this.updateColumn(elCol, i, row);
|
|
208
208
|
}
|
|
209
|
-
// Increment the column index
|
|
210
|
-
colIdx++;
|
|
211
209
|
}
|
|
212
210
|
// See if there is an event
|
|
213
211
|
if (this.props.onRenderRow) {
|