[web] Fix issue preventing adding tracks from the artist tracks page

This commit is contained in:
Alain Nussbaumer 2023-07-02 19:14:47 +02:00
parent adf9e8c969
commit ea3975753d
1 changed files with 4 additions and 1 deletions

View File

@ -154,7 +154,10 @@ export default {
},
play() {
webapi.player_play_uri(this.tracks_list.items.map((a) => a.uri).join(','), true)
webapi.player_play_uri(
this.tracks_list.items.map((a) => a.uri).join(','),
true
)
}
}
}