mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-13 03:40:48 +00:00
UBER-461 Fix twice click in filters (#3511)
Signed-off-by: Alexander Onnikov <alexander.onnikov@xored.com>
This commit is contained in:
parent
046de0d986
commit
92ab38456b
@ -142,9 +142,6 @@
|
||||
autoFocus={!$deviceOptionsStore.isMobile}
|
||||
bind:value={search}
|
||||
placeholder={presentation.string.Search}
|
||||
on:change={() => {
|
||||
getValues(search)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div class="scroll">
|
||||
|
@ -115,7 +115,7 @@
|
||||
return res
|
||||
}
|
||||
|
||||
getValues(search)
|
||||
$: getValues(search)
|
||||
</script>
|
||||
|
||||
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
||||
@ -127,9 +127,6 @@
|
||||
autoFocus={!$deviceOptionsStore.isMobile}
|
||||
bind:value={search}
|
||||
placeholder={presentation.string.Search}
|
||||
on:change={() => {
|
||||
getValues(search)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div class="scroll">
|
||||
|
@ -167,7 +167,7 @@
|
||||
|
||||
const dispatch = createEventDispatcher()
|
||||
|
||||
getValues(search)
|
||||
$: getValues(search)
|
||||
</script>
|
||||
|
||||
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
||||
@ -179,9 +179,6 @@
|
||||
autoFocus={!$deviceOptionsStore.isMobile}
|
||||
bind:value={search}
|
||||
placeholder={presentation.string.Search}
|
||||
on:change={() => {
|
||||
getValues(search)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div class="scroll">
|
||||
|
@ -164,9 +164,6 @@
|
||||
autoFocus={!$deviceOptionsStore.isMobile}
|
||||
bind:value={search}
|
||||
placeholder={presentation.string.Search}
|
||||
on:change={() => {
|
||||
getValues(search)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
{:else}
|
||||
|
@ -145,7 +145,7 @@
|
||||
|
||||
const dispatch = createEventDispatcher()
|
||||
|
||||
getValues(search)
|
||||
$: getValues(search)
|
||||
</script>
|
||||
|
||||
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
||||
@ -158,9 +158,6 @@
|
||||
autoFocus={!$deviceOptionsStore.isMobile}
|
||||
bind:value={search}
|
||||
placeholder={presentation.string.Search}
|
||||
on:change={() => {
|
||||
getValues(search)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
{:else}
|
||||
|
Loading…
Reference in New Issue
Block a user