From 6c2627003bfeb07991e11fec34cc9a8aec612132 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 9 May 2023 23:29:43 +0200 Subject: [PATCH] fix quickstyle properties with app navigation --- .../lib/components/common/clearableInput/ClearableInput.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/lib/components/common/clearableInput/ClearableInput.svelte b/frontend/src/lib/components/common/clearableInput/ClearableInput.svelte index 882a026583..f109bd2963 100644 --- a/frontend/src/lib/components/common/clearableInput/ClearableInput.svelte +++ b/frontend/src/lib/components/common/clearableInput/ClearableInput.svelte @@ -37,6 +37,7 @@ class="resize-y duration-200 {inputClass}" {...$$restProps} on:input={handleInput} + on:keydown|stopPropagation on:focus on:blur /> @@ -48,6 +49,7 @@ class="duration-200 {(type === 'number' && value ? '!pr-[26px] ' : '') + inputClass}" {...$$restProps} on:input={handleInput} + on:keydown|stopPropagation on:focus on:blur />