mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 02:25:35 +01:00
Fixed field parameters.
This commit is contained in:
parent
0f6cdf8b80
commit
7d2c361725
12 changed files with 90 additions and 88 deletions
|
|
@ -45,13 +45,13 @@ export function Nav(props: any) {
|
|||
<SideNavSection>
|
||||
{links.map(({ href, label, icon }) => {
|
||||
return (
|
||||
<Link key={href} href={href}>
|
||||
<Link key={href} href={href} role="button">
|
||||
<SideNavItem label={label} icon={icon} isSelected={pathname.startsWith(href)} />
|
||||
</Link>
|
||||
);
|
||||
})}
|
||||
</SideNavSection>
|
||||
<SideNavSection alignSelf="end"></SideNavSection>
|
||||
<SideNavSection alignSelf="end">{``}</SideNavSection>
|
||||
</SideNav>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue