Skip to content

Commit

Permalink
fix(app-header): use ID as visible mega-menu matcher (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
nowseemee authored Jun 7, 2021
1 parent 1420ab4 commit d806408
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export class Header {
if (typeof item.onClick === 'function') {
item.onClick(event);
}
this.visibleMegaMenu = item.children ? item.name : null;
this.visibleMegaMenu = item.children ? item.id : null;
}}
name={item.name}
>
Expand Down

0 comments on commit d806408

Please sign in to comment.