Fix playlist editor can't click outside trash can to delete item
This commit is contained in:
parent
a7e43a8346
commit
706d55413b
|
@ -0,0 +1 @@
|
||||||
|
In playlist editor can now click outside the trashcan but inside the button to delete entry (#1348)
|
|
@ -157,10 +157,12 @@
|
||||||
{{ plt.track.artist.name }}
|
{{ plt.track.artist.name }}
|
||||||
</td>
|
</td>
|
||||||
<td class="right aligned">
|
<td class="right aligned">
|
||||||
<button class="ui circular danger basic icon button">
|
<button
|
||||||
|
class="ui circular danger basic icon button"
|
||||||
|
@click.stop="removePlt(index)"
|
||||||
|
>
|
||||||
<i
|
<i
|
||||||
class="trash icon"
|
class="trash icon"
|
||||||
@click.stop="removePlt(index)"
|
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue