Skip to content

Commit

Permalink
feat: invert Analytics and Monitoring in user menu
Browse files Browse the repository at this point in the history
Signed-off-by: David Dal Busco <[email protected]>
  • Loading branch information
peterpeterparker committed Nov 16, 2023
1 parent 05241c3 commit 036f15e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/frontend/src/lib/components/core/User.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,25 +51,25 @@
</a>

<a
href="/monitoring"
href={analyticsLink($satelliteStore?.satellite_id)}
class="menu"
role="menuitem"
aria-haspopup="menu"
rel="external noopener norefferer"
>
<IconTelescope />
<span>{$i18n.observatory.title}</span>
<IconChartBar />
<span>{$i18n.analytics.title}</span>
</a>

<a
href={analyticsLink($satelliteStore?.satellite_id)}
href="/monitoring"
class="menu"
role="menuitem"
aria-haspopup="menu"
rel="external noopener norefferer"
>
<IconChartBar />
<span>{$i18n.analytics.title}</span>
<IconTelescope />
<span>{$i18n.observatory.title}</span>
</a>

<a
Expand Down

0 comments on commit 036f15e

Please sign in to comment.