From 03e39640be79ffcbb3deed28fff67eebf2a1e8e1 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 17 Oct 2021 12:18:26 -0500 Subject: [PATCH] Fix series displayed on global search menu book --- client/components/cards/AudiobookSearchCard.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/client/components/cards/AudiobookSearchCard.vue b/client/components/cards/AudiobookSearchCard.vue index f6d463f6..9edbb9cd 100644 --- a/client/components/cards/AudiobookSearchCard.vue +++ b/client/components/cards/AudiobookSearchCard.vue @@ -63,6 +63,7 @@ export default { if (this.matchKey === 'tags') return `

Tags: ${html}

` if (this.matchKey === 'author') return `by ${html}` + if (this.matchKey === 'series') return `

Series: ${html}

` return `${html}` } },