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'