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'