Merge master

This commit is contained in:
Lars van Rhijn
2023-10-25 17:35:45 +02:00

View File

@ -192,7 +192,7 @@
${ song.artist }$
</td>
<td>
<a href="#" v-on:click="request_song(song.id);">${song.title }$</a>
<button v-on:click="request_song(song.id);" class="btn btn-link p-0 text-decoration-none">${ song.title }$</button>
</td>
<td>
<template v-if="song.user === null">
@ -206,9 +206,9 @@
${ song.duration.secondsToMMSS() }$
</td>
<td>
<a href="#" v-on:click="report_song(song.id);">
<button v-on:click="report_song(song.id);" class="btn btn-link p-0 text-decoration-none">
</a>
</button>
</td>
</tr>
</template>