From 2b4211847325e8bb976748584fcf558f623826d8 Mon Sep 17 00:00:00 2001 From: JG Date: Thu, 21 Jul 2022 14:59:53 +0100 Subject: [PATCH] fixed --- app/frontend/modules/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/frontend/modules/search.js b/app/frontend/modules/search.js index 5e22c0cf5..02d776b19 100644 --- a/app/frontend/modules/search.js +++ b/app/frontend/modules/search.js @@ -110,7 +110,7 @@ export const sort = (query, options) => { export const suggestion = (value, options) => { const option = options.find((o) => o.name === value) if (option) { - const html = option.append ? `${value} ${option.append}` : `${value}` + const html = option.append ? `${value} ${option.append}` : `${value}` return option.hint ? `${html}
${option.hint}
` : html } else { return 'No results found'