|
@@ -241,7 +241,7 @@
|
|
>
|
|
>
|
|
<li
|
|
<li
|
|
v-for="(song, index) in playlist.songs"
|
|
v-for="(song, index) in playlist.songs"
|
|
- :key="'key-' + index"
|
|
|
|
|
|
+ :key="'key-' + song._id"
|
|
>
|
|
>
|
|
<song-item
|
|
<song-item
|
|
:song="song"
|
|
:song="song"
|
|
@@ -281,6 +281,11 @@
|
|
<i
|
|
<i
|
|
class="material-icons delete-icon"
|
|
class="material-icons delete-icon"
|
|
content="Remove Song from Playlist"
|
|
content="Remove Song from Playlist"
|
|
|
|
+ @click.shift="
|
|
|
|
+ removeSongFromPlaylist(
|
|
|
|
+ song.songId
|
|
|
|
+ )
|
|
|
|
+ "
|
|
v-tippy
|
|
v-tippy
|
|
>delete_forever</i
|
|
>delete_forever</i
|
|
>
|
|
>
|