diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue index f29617fe..6780c338 100644 --- a/client/components/cards/LazyBookCard.vue +++ b/client/components/cards/LazyBookCard.vue @@ -452,10 +452,12 @@ export default { text: this.$strings.LabelAddToCollection }) } - items.push({ - func: 'openPlaylists', - text: this.$strings.LabelAddToPlaylist - }) + if (this.numTracks) { + items.push({ + func: 'openPlaylists', + text: this.$strings.LabelAddToPlaylist + }) + } } if (this.userCanUpdate) { items.push({ diff --git a/client/pages/item/_id/index.vue b/client/pages/item/_id/index.vue index 7ff3ce64..eb9c1127 100644 --- a/client/pages/item/_id/index.vue +++ b/client/pages/item/_id/index.vue @@ -158,7 +158,7 @@ - +