Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix(core): menu close overlays #99

Merged
merged 12 commits into from
Nov 7, 2022
Prev Previous commit
Next Next commit
Merge branch 'main' of https://github.com/siemens/ix into fix/menu-close
goncalosard committed Oct 28, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0322c961ec3bc371c318011a31736172436689a1
15 changes: 15 additions & 0 deletions packages/core/src/components/menu-about/menu-about.tsx
Original file line number Diff line number Diff line change
@@ -101,6 +101,21 @@ export class MenuAbout {
}
}

private getTabItems() {
return this.aboutItems.map(({ label }) => {
return (
<ix-tab-item
class={{
active: label === this.activeTabLabel,
}}
onClick={() => this.setTab(label)}
>
{label}
</ix-tab-item>
);
});
}

render() {
return (
<Host
You are viewing a condensed version of this merge commit. You can view the full changes here.