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 %> <% song.artist %>
</td> </td>
<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>
<td> <td>
<template v-if="song.user === null"> <template v-if="song.user === null">
@ -204,9 +204,9 @@
<% song.duration.secondsToMMSS() %> <% song.duration.secondsToMMSS() %>
</td> </td>
<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> </td>
</tr> </tr>
</template> </template>