From 47dbd90971b0470b475bb069e15ed1d0ef4b58f2 Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 4 Jan 2022 07:36:52 -0600 Subject: [PATCH] Add:ISBN highlighting to book search card --- client/components/cards/AudiobookSearchCard.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/components/cards/AudiobookSearchCard.vue b/client/components/cards/AudiobookSearchCard.vue index be8420f0..159f02b0 100644 --- a/client/components/cards/AudiobookSearchCard.vue +++ b/client/components/cards/AudiobookSearchCard.vue @@ -1,5 +1,5 @@ @@ -70,6 +70,7 @@ export default { if (this.matchKey === 'tags') return `

Tags: ${html}

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

ISBN: ${html}

` if (this.matchKey === 'series') return `

Series: ${html}

` return `${html}` }