From 15bb1188a223074a2297263525061af9a1e1aa05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Thu, 18 Apr 2024 18:02:27 +0300 Subject: [PATCH] Fixed #15269 --- src/app/components/tabmenu/tabmenu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/tabmenu/tabmenu.ts b/src/app/components/tabmenu/tabmenu.ts index 783647671ed..f72d6063b64 100644 --- a/src/app/components/tabmenu/tabmenu.ts +++ b/src/app/components/tabmenu/tabmenu.ts @@ -278,7 +278,7 @@ export class TabMenu implements AfterContentInit, AfterViewInit, AfterViewChecke } ngAfterViewChecked() { - if (isPlatformBrowser(this.platformId) && this.tabChanged) { + if (isPlatformBrowser(this.platformId)) { this.updateInkBar(); this.tabChanged = false; }