From 4ee74ca33cf04497c50856d65eb6ffa6d43ffa24 Mon Sep 17 00:00:00 2001 From: noureddine-taleb <49735706+noureddine-taleb@users.noreply.github.com> Date: Mon, 29 Jul 2024 16:44:07 +0000 Subject: [PATCH] tabmenu: fix emitting change event twice when clicking on item --- src/app/components/tabmenu/tabmenu.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/components/tabmenu/tabmenu.ts b/src/app/components/tabmenu/tabmenu.ts index 1a38d3ba7ed..d05e475accb 100644 --- a/src/app/components/tabmenu/tabmenu.ts +++ b/src/app/components/tabmenu/tabmenu.ts @@ -344,7 +344,6 @@ export class TabMenu implements AfterContentInit, AfterViewInit, AfterViewChecke } this.activeItem = item; - this.activeItemChange.emit(item); this.tabChanged = true; this.cd.markForCheck(); }