mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-25 14:47:39 +00:00
fix(web): ocr button not clickable for stacked assets (#25210)
This commit is contained in:
parent
4b5b9baa78
commit
94ea83c415
1 changed files with 2 additions and 2 deletions
|
|
@ -586,11 +586,11 @@
|
||||||
|
|
||||||
{#if stack && withStacked}
|
{#if stack && withStacked}
|
||||||
{@const stackedAssets = stack.assets}
|
{@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">
|
<div class="relative flex flex-row no-wrap overflow-x-auto overflow-y-hidden horizontal-scrollbar">
|
||||||
{#each stackedAssets as stackedAsset (stackedAsset.id)}
|
{#each stackedAssets as stackedAsset (stackedAsset.id)}
|
||||||
<div
|
<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'}
|
style:bottom={stackedAsset.id === asset.id ? '0' : '-10px'}
|
||||||
>
|
>
|
||||||
<Thumbnail
|
<Thumbnail
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue