Skip to content

Commit 43b0860

Browse files
authoredMar 17, 2025··
fix(material/timepicker): assertion error if reopened quickly (#30639)
Fixes that the timepicker was throwing an error if it gets closed and reopened before change detection has had a chance to run. Fixes #30637.
1 parent d5ba63d commit 43b0860

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎src/material/timepicker/timepicker.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,13 @@ export class MatTimepicker<D> implements OnDestroy, MatOptionParentComponent {
232232
const overlayRef = this._getOverlayRef();
233233
overlayRef.updateSize({width: input.getOverlayOrigin().nativeElement.offsetWidth});
234234
this._portal ??= new TemplatePortal(this._panelTemplate(), this._viewContainerRef);
235-
overlayRef.attach(this._portal);
235+
236+
// We need to check this in case `isOpen` was flipped, but change detection hasn't
237+
// had a chance to run yet. See https://github.com/angular/components/issues/30637
238+
if (!overlayRef.hasAttached()) {
239+
overlayRef.attach(this._portal);
240+
}
241+
236242
this._onOpenRender?.destroy();
237243
this._onOpenRender = afterNextRender(
238244
() => {

0 commit comments

Comments
 (0)
Please sign in to comment.