[web] Use kebab style case for tags

This commit is contained in:
Alain Nussbaumer 2025-02-16 15:29:19 +01:00
parent 330023c940
commit 59559847ac
3 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@
</template> </template>
<template #content> <template #content>
<list-albums-spotify :items="albums" /> <list-albums-spotify :items="albums" />
<VueEternalLoading v-if="offset < total" :load="load_next"> <vue-eternal-loading v-if="offset < total" :load="load_next">
<template #loading> <template #loading>
<div class="columns is-centered"> <div class="columns is-centered">
<div class="column has-text-centered"> <div class="column has-text-centered">
@ -38,7 +38,7 @@
<template #no-results> <template #no-results>
<br /> <br />
</template> </template>
</VueEternalLoading> </vue-eternal-loading>
<modal-dialog-artist-spotify <modal-dialog-artist-spotify
:item="artist" :item="artist"
:show="show_details_modal" :show="show_details_modal"

View File

@ -26,7 +26,7 @@
</template> </template>
<template #content> <template #content>
<list-tracks-spotify :items="tracks" :context_uri="playlist.uri" /> <list-tracks-spotify :items="tracks" :context_uri="playlist.uri" />
<VueEternalLoading v-if="offset < total" :load="load_next"> <vue-eternal-loading v-if="offset < total" :load="load_next">
<template #loading> <template #loading>
<div class="columns is-centered"> <div class="columns is-centered">
<div class="column has-text-centered"> <div class="column has-text-centered">
@ -37,7 +37,7 @@
<template #no-more> <template #no-more>
<br /> <br />
</template> </template>
</VueEternalLoading> </vue-eternal-loading>
<modal-dialog-playlist-spotify <modal-dialog-playlist-spotify
:item="playlist" :item="playlist"
:show="show_playlist_details_modal" :show="show_playlist_details_modal"

View File

@ -38,7 +38,7 @@
</template> </template>
<template #content> <template #content>
<component :is="components[type]" :items="items.items" /> <component :is="components[type]" :items="items.items" />
<VueEternalLoading v-if="expanded" :load="search_next"> <vue-eternal-loading v-if="expanded" :load="search_next">
<template #loading> <template #loading>
<div class="columns is-centered"> <div class="columns is-centered">
<div class="column has-text-centered"> <div class="column has-text-centered">
@ -49,7 +49,7 @@
<template #no-more> <template #no-more>
<br /> <br />
</template> </template>
</VueEternalLoading> </vue-eternal-loading>
</template> </template>
<template v-if="!expanded" #footer> <template v-if="!expanded" #footer>
<nav v-if="show_all_button(items)" class="level"> <nav v-if="show_all_button(items)" class="level">