Skip to content

Commit

Permalink
feat(bal-navigation-menu-list-item): added the target attribute for i…
Browse files Browse the repository at this point in the history
…tems from grey lists
  • Loading branch information
madaluca committed Oct 7, 2022
1 parent 285e6e0 commit 773362e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ export class NavigationMenu {
<bal-navigation-menu-list headline={block.label} href={block.link} color={block.color}>
<div slot="links">
{block.subLevels?.map(item => (
<bal-navigation-menu-list-item href={item.link}>{item.label}</bal-navigation-menu-list-item>
<bal-navigation-menu-list-item href={item.link} target={item.target}>
{item.label}
</bal-navigation-menu-list-item>
))}
</div>
</bal-navigation-menu-list>
Expand Down

0 comments on commit 773362e

Please sign in to comment.