mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
fix: bottom sheet blank with local assets that have remote counterparts (#22743)
This commit is contained in:
parent
c2b95efa26
commit
1f512d9a0c
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ class AssetDetailBottomSheet extends ConsumerWidget {
|
||||||
isArchived: isArchived,
|
isArchived: isArchived,
|
||||||
isTrashEnabled: isTrashEnable,
|
isTrashEnabled: isTrashEnable,
|
||||||
isInLockedView: isInLockedView,
|
isInLockedView: isInLockedView,
|
||||||
isStacked: asset.hasRemote && (asset as RemoteAsset).stackId != null,
|
isStacked: asset is RemoteAsset && asset.stackId != null,
|
||||||
currentAlbum: currentAlbum,
|
currentAlbum: currentAlbum,
|
||||||
advancedTroubleshooting: advancedTroubleshooting,
|
advancedTroubleshooting: advancedTroubleshooting,
|
||||||
source: ActionSource.viewer,
|
source: ActionSource.viewer,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue