mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 16:32:20 +01:00
Merge branch 'fix/scrolling-in-requests-page' into 'marietje-zuid'
Replace a with button Closes #41 See merge request technicie/MarietjeDjango!77
This commit is contained in:
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user