Commit 01b3ed5d authored by Alexander Trofimov's avatar Alexander Trofimov

Merge pull request #8 from ONLYOFFICE/hotfix/clear-filter

fix #32237
parents ec8d1f59 8d1ad5c0
...@@ -1480,14 +1480,13 @@ ...@@ -1480,14 +1480,13 @@
} }
} }
} }
if(worksheet.AutoFilter && (worksheet.AutoFilter.isApplyAutoFilter() || worksheet.AutoFilter.isApplySortConditions())) if (worksheet.AutoFilter &&
{ (worksheet.AutoFilter.isApplyAutoFilter() || worksheet.AutoFilter.isApplySortConditions())) {
if(clean) if (clean) {
{ return this._cleanFilterColumnsAndSortState(worksheet.AutoFilter, activeCell);
this._cleanFilterColumnsAndSortState(worksheet.AutoFilter, activeCell);
}
} }
}
return false; return false;
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment