Browse Source

Merge pull request #728 from jialj/dev

fix: 修复数据透视 数据声明bug
master
Dushusir 4 years ago
committed by GitHub
parent
commit
3fca0d63a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/controllers/pivotTable.js

4
src/controllers/pivotTable.js

@ -731,9 +731,7 @@ const pivotTable = {
redo["type"] = "pivotTable_change";
redo["curdata"] = $.extend(true, [], data);
redo["sheetIndex"] = Store.currentSheetIndex;
let pivotTable = _this.getPivotTableData();
redo["pivotTablecur"] = pivotTable;
redo["pivotTablecur"] = _this.getPivotTableData();
if(Store.clearjfundo){
Store.jfundo.length = 0;

Loading…
Cancel
Save