mirror of
https://github.com/immich-app/immich.git
synced 2025-04-01 02:51:27 -05:00
fix: place suggestions not clickable in asset set location modal (#16104)
Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
parent
4f912de018
commit
411f96ef49
1 changed files with 7 additions and 5 deletions
|
@ -109,10 +109,7 @@
|
|||
<div class="flex flex-col w-full h-full gap-2">
|
||||
<div class="relative w-64 sm:w-96">
|
||||
{#if suggestionContainer}
|
||||
<div
|
||||
use:clickOutside={{ onOutclick: () => (hideSuggestion = true) }}
|
||||
use:listNavigation={suggestionContainer}
|
||||
>
|
||||
<div use:listNavigation={suggestionContainer}>
|
||||
<button type="button" class="w-full" onclick={() => (hideSuggestion = false)}>
|
||||
<SearchBar
|
||||
placeholder={$t('search_places')}
|
||||
|
@ -126,7 +123,12 @@
|
|||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="absolute z-[99] w-full" id="suggestion" bind:this={suggestionContainer}>
|
||||
<div
|
||||
class="absolute z-[99] w-full"
|
||||
id="suggestion"
|
||||
bind:this={suggestionContainer}
|
||||
use:clickOutside={{ onOutclick: () => (hideSuggestion = true) }}
|
||||
>
|
||||
{#if !hideSuggestion}
|
||||
{#each suggestedPlaces as place, index}
|
||||
<button
|
||||
|
|
Loading…
Add table
Reference in a new issue