Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(pivot table filter bug): change sheet bug ,after filter pivot table
Browse files Browse the repository at this point in the history
  • Loading branch information
tubiaoge committed Aug 7, 2020
1 parent 0425e4e commit c7c1999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/pivotTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit c7c1999

Please sign in to comment.