Replace a with button

This commit is contained in:
Lars van Rhijn
2023-10-14 08:51:27 +02:00
parent 4f134ab62a
commit 222ff7598a

View File

@ -190,7 +190,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">
@ -204,9 +204,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>