From 93708671dc07809c0d3128a2a06e8d266d5e417f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Pe=C3=B1a?= Date: Sun, 12 Jun 2022 13:50:37 +0200 Subject: [PATCH] Fix: missing album base contextual menu --- changes/changelog.d/1791.bugfix | 1 + front/src/components/library/AlbumBase.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/changelog.d/1791.bugfix diff --git a/changes/changelog.d/1791.bugfix b/changes/changelog.d/1791.bugfix new file mode 100644 index 000000000..f59a1bcb6 --- /dev/null +++ b/changes/changelog.d/1791.bugfix @@ -0,0 +1 @@ +Fixed missing album contextual menu (#1791) (1791) diff --git a/front/src/components/library/AlbumBase.vue b/front/src/components/library/AlbumBase.vue index 2f7e8d20e..db4adcb59 100644 --- a/front/src/components/library/AlbumBase.vue +++ b/front/src/components/library/AlbumBase.vue @@ -292,7 +292,7 @@ export default { return this.object.tracks_count }, isChannel () { - return this.object.artist.channel !== null + return !!this.object.artist.channel }, isSerie () { return this.object.artist.content_category === 'podcast'