mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): cannot click on explore place (#10121)
This commit is contained in:
parent
8cf8a2cb35
commit
eba166a2f1
2 changed files with 10 additions and 4 deletions
|
|
@ -43,6 +43,7 @@
|
|||
export let readonly = false;
|
||||
export let showArchiveIcon = false;
|
||||
export let showStackedIcon = true;
|
||||
export let href: string | undefined = undefined;
|
||||
export let onClick: ((asset: AssetResponseDto) => void) | undefined = undefined;
|
||||
|
||||
let className = '';
|
||||
|
|
@ -99,7 +100,7 @@
|
|||
|
||||
<IntersectionObserver once={false} on:intersected let:intersecting>
|
||||
<a
|
||||
href={currentUrlReplaceAssetId(asset.id)}
|
||||
href={href ?? currentUrlReplaceAssetId(asset.id)}
|
||||
style:width="{width}px"
|
||||
style:height="{height}px"
|
||||
class="group focus-visible:outline-none flex overflow-hidden {disabled
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue