rapid-spreadjs 1.0.118 → 1.0.119

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.
package/dist/index.esm.js CHANGED
@@ -14651,14 +14651,14 @@ const FormulaUtils = {
14651
14651
  for (var i = 0; i < allCellValsEw.length; i++) {
14652
14652
  let item = allCellValsEw[i];
14653
14653
  if (item != null && item != undefined && item.length > 0) {
14654
- for (var j = 0; j < item.length; i++) {
14654
+ for (var j = 0; j < item.length; j++) {
14655
14655
  let element = item[j];
14656
14656
  if (element != null &&
14657
14657
  element != undefined &&
14658
14658
  isPlainObject(element) &&
14659
14659
  element.hasOwnProperty('con') &&
14660
14660
  element.hasOwnProperty('val')) {
14661
- item[j] = element['val'];
14661
+ allCellValsEw[i][j] = element['val'];
14662
14662
  }
14663
14663
  }
14664
14664
  }