From 3c943e8f7d0a147e4e19e580f445d0e4d26356c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Wed, 10 Apr 2024 21:18:05 +0200 Subject: [PATCH] mix fix --- assets/js/autocomplete/autocomplete-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/autocomplete/autocomplete-list.js b/assets/js/autocomplete/autocomplete-list.js index 34cec8f6c..8d9f5cf05 100644 --- a/assets/js/autocomplete/autocomplete-list.js +++ b/assets/js/autocomplete/autocomplete-list.js @@ -147,7 +147,7 @@ export function togglePreview () { export function hidePreview () { state.previewOpen = false const suggestionList = qs(AUTOCOMPLETE_SUGGESTION_LIST_SELECTOR) - if(suggestionList) { suggestionList.classList.remove('previewing') } + if (suggestionList) { suggestionList.classList.remove('previewing') } removePreview() }