From 5eb03e2ed9a8773f8ba432ebbde3d35c929217c1 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Fri, 12 Dec 2025 09:10:36 +0100 Subject: [PATCH] fix(material/tooltip): remove explicit usePopover The tooltip explicitly sets `usePopover` because we were using it to test out popovers. These changes remove it so that users can change the value. --- src/material/tooltip/tooltip.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/material/tooltip/tooltip.ts b/src/material/tooltip/tooltip.ts index ae3998865ff2..7f15dfd63721 100644 --- a/src/material/tooltip/tooltip.ts +++ b/src/material/tooltip/tooltip.ts @@ -538,7 +538,6 @@ export class MatTooltip implements OnDestroy, AfterViewInit { panelClass: this._overlayPanelClass ? [...this._overlayPanelClass, panelClass] : panelClass, scrollStrategy: this._injector.get(MAT_TOOLTIP_SCROLL_STRATEGY)(), disableAnimations: this._animationsDisabled, - usePopover: true, }); this._updatePosition(this._overlayRef);