Skip to content

Commit

Permalink
fix: skip invisible row after filter
Browse files Browse the repository at this point in the history
  • Loading branch information
lumixraku committed Sep 4, 2024
1 parent ec601c3 commit 00da20f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,9 @@ export class SpreadsheetSkeleton extends Skeleton {
}

for (let r = startRow; r <= endRow; r++) {
if (this.worksheet.getRowVisible(r) === false) {
continue;
}
for (let c = startColumn; c <= endColumn; c++) {
this._setCellStylesCache(r, c);
}
Expand Down

0 comments on commit 00da20f

Please sign in to comment.