Skip to content

Commit ac4e1d5

Browse files
committed
chore: cleanup
1 parent 8ace62f commit ac4e1d5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

components/sidebar/SidebarElement.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ type Tool = {
2626
show: boolean;
2727
};
2828
const tools = computed<Tool[]>(() => {
29+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
2930
const items = [
3031
{
3132
id: "dashboard",
@@ -146,7 +147,7 @@ const tools = computed<Tool[]>(() => {
146147
<SidebarItem
147148
v-for="collection in collections"
148149
:key="collection.id"
149-
type="playlist"
150+
type="private-playlist"
150151
:title="collection.name || ''"
151152
:link="{
152153
name: 'playlist-private-id',

components/sidebar/SidebarItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ withDefaults(
1818
<template>
1919
<NuxtLink
2020
:to="link"
21-
active-class="bg-tint text-black-1 dark:text-black-1"
21+
active-class="bg-tint text-black-1 dark:text-black-1"
2222
class="group flex gap-2 rounded-xl px-4 py-2"
2323
>
2424
<NuxtIcon v-if="icon" :name="icon" class="text-xl" />

0 commit comments

Comments
 (0)