mirror of
https://github.com/immich-app/immich.git
synced 2025-11-12 17:46:55 -05:00
fix(web): Slideshow fade occurs when not in slideshow (#21326)
- ensure slideshow transition only shows when both enabled and in a slideshow
This commit is contained in:
parent
0df88fc22b
commit
80fa5ec198
@ -491,7 +491,7 @@
|
||||
onPreviousAsset={() => navigateAsset('previous')}
|
||||
onNextAsset={() => navigateAsset('next')}
|
||||
{sharedLink}
|
||||
haveFadeTransition={$slideshowState === SlideshowState.None || $slideshowTransition}
|
||||
haveFadeTransition={$slideshowState !== SlideshowState.None && $slideshowTransition}
|
||||
/>
|
||||
{/if}
|
||||
{:else}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user