From c7c1999081289c70b6e575e9e37fae82bdfe438c Mon Sep 17 00:00:00 2001 From: liuyang Date: Fri, 7 Aug 2020 11:11:31 +0800 Subject: [PATCH] fix(pivot table filter bug): change sheet bug ,after filter pivot table --- src/controllers/pivotTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/pivotTable.js b/src/controllers/pivotTable.js index cf717cb..3cb8692 100644 --- a/src/controllers/pivotTable.js +++ b/src/controllers/pivotTable.js @@ -133,7 +133,7 @@ const pivotTable = { let rowhidden = {}; if (_this.filterparm != null) { for (let f in _this.filterparm) { - for (h in _this.filterparm[f]) { + for (let h in _this.filterparm[f]) { if (h.rowhidden != null) { rowhidden = $.extend(true, rowhidden, h.rowhidden); }