Skip to content

Commit

Permalink
fix5
Browse files Browse the repository at this point in the history
  • Loading branch information
kseamon committed Oct 31, 2024
1 parent 4192088 commit 548f9cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cdk/table/sticky-styler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -562,8 +562,8 @@ export class StickyStyler {
height: entry.borderBoxSize[0].blockSize,
}
: {
width: entry.contentRect.width,
height: entry.contentRect.height,
width: (entry.target as HTMLElement).offsetWidth,
height: (entry.target as HTMLElement).offsetHeight,
};

const cachedSize = this._elemSizeCache.get(entry.target as HTMLElement);
Expand Down

0 comments on commit 548f9cc

Please sign in to comment.