0
Fork 0
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:
Zack Pollard 2025-02-15 10:44:11 +01:00 committed by GitHub
parent 4f912de018
commit 411f96ef49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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