fix(web): prevent scroll reset on search page (#7385)

This commit is contained in:
Michel Heusschen 2024-02-24 21:24:24 +01:00 committed by GitHub
parent 6ec4c5874b
commit 9d3ed719e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -290,11 +290,7 @@
</section>
{/if}
<section id="search-content" class="relative bg-immich-bg dark:bg-immich-dark-bg">
{#if isLoading}
<div class="flex justify-center py-16 items-center">
<LoadingSpinner size="48" />
</div>
{:else if searchResultAssets.length > 0}
{#if searchResultAssets.length > 0}
<GalleryViewer
assets={searchResultAssets}
bind:selectedAssets
@ -302,7 +298,7 @@
showArchiveIcon={true}
{viewport}
/>
{:else}
{:else if !isLoading}
<div class="flex min-h-[calc(66vh_-_11rem)] w-full place-content-center items-center dark:text-white">
<div class="flex flex-col content-center items-center text-center">
<Icon path={mdiImageOffOutline} size="3.5em" />
@ -311,6 +307,12 @@
</div>
</div>
{/if}
{#if isLoading}
<div class="flex justify-center py-16 items-center">
<LoadingSpinner size="48" />
</div>
{/if}
</section>
</section>
</section>