fix(queues): remove redundant and faulty toggle_details call

song is not even defined in this scope.
This commit is contained in:
2024-04-23 18:11:59 +02:00
parent 3c2df2adfd
commit 7ab6bc6c78

View File

@ -83,8 +83,8 @@
</td> </td>
<td class="col-md-1"> <td class="col-md-1">
<span class="control-icons">Control</span> <span class="control-icons">Control</span>
<span v-if="playsIn" class="btn btn-link p-0 d-sm-none" v-on:click="playsIn = false" v-on:click="toggle_details(song)">(Plays In)</span> <span v-if="playsIn" class="btn btn-link p-0 d-sm-none" v-on:click="playsIn = false" >(Plays In)</span>
<span v-else class="btn btn-link p-0 d-sm-none" v-on:click="playsIn = true" v-on:click="toggle_details(song)">(Plays At)</span> <span v-else class="btn btn-link p-0 d-sm-none" v-on:click="playsIn = true">(Plays At)</span>
</td> </td>
</tr> </tr>
</thead> </thead>