From 13b2b2fc4ed1b0d7efcc709505223e95d8a934e1 Mon Sep 17 00:00:00 2001 From: martin <74269598+martabal@users.noreply.github.com> Date: Fri, 28 Jul 2023 05:06:42 +0200 Subject: [PATCH] fix(web): clickable items in the searchbar (#3441) --- .../search-bar/search-bar.svelte | 151 +++++++++--------- 1 file changed, 76 insertions(+), 75 deletions(-) diff --git a/web/src/lib/components/shared-components/search-bar/search-bar.svelte b/web/src/lib/components/shared-components/search-bar/search-bar.svelte index f5c4be56a1..8370793166 100644 --- a/web/src/lib/components/shared-components/search-bar/search-bar.svelte +++ b/web/src/lib/components/shared-components/search-bar/search-bar.svelte @@ -5,6 +5,7 @@ import { goto } from '$app/navigation'; import { isSearchEnabled, savedSearchTerms } from '$lib/stores/search.store'; import { fly } from 'svelte/transition'; + import { clickOutside } from '$lib/utils/click-outside'; export let value = ''; export let grayTheme: boolean; @@ -55,85 +56,85 @@ }; -