Skip to content

Commit 960af7c

Browse files
committed
fix(frontend): linter
1 parent 2715932 commit 960af7c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

frontend/src/components/DashboardPage/NavFooter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ const props = defineProps<{
1313
<template>
1414
<SidebarMenu>
1515
<div
16-
v-if="buttons"
16+
v-if="props.buttons"
1717
class="mx-2 mb-0 flex max-w-[16rem] flex-row justify-between gap-3 group-data-[collapsible=icon]:m-0 group-data-[collapsible=icon]:mb-3 group-data-[collapsible=icon]:flex-col group-data-[collapsible=icon]:items-start"
1818
>
1919
<SidebarMenuButton
2020
class="h-8 w-8 bg-white/5"
21-
v-for="button in buttons"
21+
v-for="button in props.buttons"
2222
:key="button.url"
2323
@click="openLink(button.url)"
2424
:tooltip="button.title"

frontend/src/data/dashboard/HeaderNav.data.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
BookClosed,
33
Hearts,
44
HelpCircle,
5-
HomeLine,
65
LayersThree01,
76
Link03,
87
MusicNote01,

0 commit comments

Comments
 (0)