[web] Beautify code

The source code has been beautified to follow the coding standards.
This commit is contained in:
Alain Nussbaumer
2023-06-03 18:52:17 +02:00
parent 025a1c73a8
commit aa3127167b
9 changed files with 29 additions and 20 deletions

View File

@@ -146,7 +146,9 @@ export default {
.library_album_tracks(this.selected_album.id, { limit: 1 })
.then(({ data }) => {
webapi.library_track_playlists(data.items[0].id).then(({ data }) => {
this.rss_playlist_to_remove = data.items.filter((pl) => pl.type === 'rss')[0]
this.rss_playlist_to_remove = data.items.filter(
(pl) => pl.type === 'rss'
)[0]
this.show_remove_podcast_modal = true
this.show_details_modal = false
})