diff --git a/packages/components/plh/plh-kids-kw/components/bottom-navigation-bar/bottom-navigation-bar.component.ts b/packages/components/plh/plh-kids-kw/components/bottom-navigation-bar/bottom-navigation-bar.component.ts index 22e7209c7..6083d3d50 100644 --- a/packages/components/plh/plh-kids-kw/components/bottom-navigation-bar/bottom-navigation-bar.component.ts +++ b/packages/components/plh/plh-kids-kw/components/bottom-navigation-bar/bottom-navigation-bar.component.ts @@ -20,18 +20,12 @@ interface INavButton { }) export class PlhBottomNavigationBarComponent extends TemplateBaseComponent implements OnInit { params: Partial = {}; - isActive = false; ngOnInit() { this.getParams(); } - //get template parameters getParams() { this.params.buttonList = getParamFromTemplateRow(this._row, "button_list", []); } - - toggleIcon() { - this.isActive = !this.isActive; - } }