We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c048543 commit b595bb0Copy full SHA for b595bb0
1 file changed
pages/playlist/private/[id]/index.vue
@@ -75,9 +75,13 @@ const handleReorder = (tracks: TrackModel[]) => {
75
class="flex aspect-square w-full justify-center rounded-2xl bg-background-2"
76
>
77
<NuxtIcon
78
- name="icon.category.playlist"
+ :name="
79
+ collection?.useLikeIcon
80
+ ? 'icon.category.favorites'
81
+ : 'icon.category.playlist'
82
+ "
83
class="text-5xl md:text-7xl lg:text-8xl"
- ></NuxtIcon>
84
+ />
85
</div>
86
</template>
87
<template v-if="collection" #heading>
0 commit comments