From 169aabf4345bf10aef8a9ed93bacdd4600fa9383 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Sat, 31 Aug 2024 09:02:12 +0200 Subject: [PATCH] fix(material/tooltip): remove old IE workaround Removes a workaround for an IE bug that is no longer necessary. --- src/material/tooltip/tooltip.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/material/tooltip/tooltip.ts b/src/material/tooltip/tooltip.ts index 1af416d83817..47ec824f100d 100644 --- a/src/material/tooltip/tooltip.ts +++ b/src/material/tooltip/tooltip.ts @@ -948,9 +948,6 @@ export class MatTooltip implements OnDestroy, AfterViewInit { encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { - // Forces the element to have a layout in IE and Edge. This fixes issues where the element - // won't be rendered if the animations are disabled or there is no web animations polyfill. - '[style.zoom]': 'isVisible() ? 1 : null', '(mouseleave)': '_handleMouseLeave($event)', 'aria-hidden': 'true', },