aio-table 7.1.0 → 7.1.1

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2570,9 +2570,9 @@ function ATFN({
2570
2570
  let evalText;
2571
2571
 
2572
2572
  if (typeof value === 'string') {
2573
- evalText = `row.${getValue} = "${value}"`;
2573
+ evalText = `${getValue} = "${value}"`;
2574
2574
  } else {
2575
- evalText = 'row.' + getValue + ' = ' + JSON.stringify(value);
2575
+ evalText = getValue + ' = ' + JSON.stringify(value);
2576
2576
  }
2577
2577
 
2578
2578
  eval(evalText);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aio-table",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "description": "all in one table. tree mode , simple mode , tree mode, gantt mode , groupby mode, freeze mode.",
5
5
  "main": "index.js",
6
6
  "scripts": {