We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5cf3d commit af3aa88Copy full SHA for af3aa88
src/cdk-experimental/column-resize/resizable.ts
@@ -284,7 +284,9 @@ export abstract class Resizable<HandleComponent extends ResizeOverlayHandle>
284
}
285
286
private _updateOverlayHandleHeight() {
287
- this.overlayRef!.updateSize({height: this.elementRef.nativeElement!.offsetHeight});
+ requestAnimationFrame(() => {
288
+ this.overlayRef!.updateSize({height: this.elementRef.nativeElement!.offsetHeight});
289
+ })
290
291
292
private _applySize(sizeInPixels: number, previousSize?: number): void {
0 commit comments