From 89d96c4cc905d0817247f876f2062c0c2021ea3c Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 21 May 2022 17:17:28 -0500 Subject: [PATCH] Add spaces around bracket [text] in QuoteList.vue --- src/components/QuoteList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/QuoteList.vue b/src/components/QuoteList.vue index 6a2e4ad..8517c0f 100644 --- a/src/components/QuoteList.vue +++ b/src/components/QuoteList.vue @@ -41,7 +41,7 @@ export default { methods: { transform(quoteText) { if (quoteText.includes("[")) { - return quoteText.replace(/\[([^\]]+)]/, '[$1]') + return quoteText.replace(/\[([^\]]+)]/, ' [$1] ') } return quoteText },