mirror of
https://github.com/hcengineering/platform.git
synced 2025-06-08 00:37:42 +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}
|
autoFocus={!$deviceOptionsStore.isMobile}
|
||||||
bind:value={search}
|
bind:value={search}
|
||||||
placeholder={presentation.string.Search}
|
placeholder={presentation.string.Search}
|
||||||
on:change={() => {
|
|
||||||
getValues(search)
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="scroll">
|
<div class="scroll">
|
||||||
|
@ -115,7 +115,7 @@
|
|||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
getValues(search)
|
$: getValues(search)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
||||||
@ -127,9 +127,6 @@
|
|||||||
autoFocus={!$deviceOptionsStore.isMobile}
|
autoFocus={!$deviceOptionsStore.isMobile}
|
||||||
bind:value={search}
|
bind:value={search}
|
||||||
placeholder={presentation.string.Search}
|
placeholder={presentation.string.Search}
|
||||||
on:change={() => {
|
|
||||||
getValues(search)
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="scroll">
|
<div class="scroll">
|
||||||
|
@ -167,7 +167,7 @@
|
|||||||
|
|
||||||
const dispatch = createEventDispatcher()
|
const dispatch = createEventDispatcher()
|
||||||
|
|
||||||
getValues(search)
|
$: getValues(search)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
||||||
@ -179,9 +179,6 @@
|
|||||||
autoFocus={!$deviceOptionsStore.isMobile}
|
autoFocus={!$deviceOptionsStore.isMobile}
|
||||||
bind:value={search}
|
bind:value={search}
|
||||||
placeholder={presentation.string.Search}
|
placeholder={presentation.string.Search}
|
||||||
on:change={() => {
|
|
||||||
getValues(search)
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="scroll">
|
<div class="scroll">
|
||||||
|
@ -164,9 +164,6 @@
|
|||||||
autoFocus={!$deviceOptionsStore.isMobile}
|
autoFocus={!$deviceOptionsStore.isMobile}
|
||||||
bind:value={search}
|
bind:value={search}
|
||||||
placeholder={presentation.string.Search}
|
placeholder={presentation.string.Search}
|
||||||
on:change={() => {
|
|
||||||
getValues(search)
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
|
@ -145,7 +145,7 @@
|
|||||||
|
|
||||||
const dispatch = createEventDispatcher()
|
const dispatch = createEventDispatcher()
|
||||||
|
|
||||||
getValues(search)
|
$: getValues(search)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
||||||
@ -158,9 +158,6 @@
|
|||||||
autoFocus={!$deviceOptionsStore.isMobile}
|
autoFocus={!$deviceOptionsStore.isMobile}
|
||||||
bind:value={search}
|
bind:value={search}
|
||||||
placeholder={presentation.string.Search}
|
placeholder={presentation.string.Search}
|
||||||
on:change={() => {
|
|
||||||
getValues(search)
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
|
Loading…
Reference in New Issue
Block a user