fix(web): ocr button not clickable for stacked assets (#25210)

This commit is contained in:
Yaros 2026-01-12 19:22:37 +01:00 committed by GitHub
parent 4b5b9baa78
commit 94ea83c415
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -586,11 +586,11 @@
{#if stack && withStacked}
{@const stackedAssets = stack.assets}
<div id="stack-slideshow" class="absolute bottom-0 w-full col-span-4 col-start-1">
<div id="stack-slideshow" class="absolute bottom-0 w-full col-span-4 col-start-1 pointer-events-none">
<div class="relative flex flex-row no-wrap overflow-x-auto overflow-y-hidden horizontal-scrollbar">
{#each stackedAssets as stackedAsset (stackedAsset.id)}
<div
class={['inline-block px-1 relative transition-all pb-2']}
class={['inline-block px-1 relative transition-all pb-2 pointer-events-auto']}
style:bottom={stackedAsset.id === asset.id ? '0' : '-10px'}
>
<Thumbnail