mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix(web): prevent new uploads from temporarily showing in trash (#10348)
This commit is contained in:
parent
aea1c46bea
commit
dfad4f0ff4
2 changed files with 11 additions and 1 deletions
|
|
@ -326,7 +326,8 @@ export class AssetStore {
|
|||
this.options.personId ||
|
||||
this.options.albumId ||
|
||||
isMismatched(this.options.isArchived, asset.isArchived) ||
|
||||
isMismatched(this.options.isFavorite, asset.isFavorite)
|
||||
isMismatched(this.options.isFavorite, asset.isFavorite) ||
|
||||
isMismatched(this.options.isTrashed, asset.isTrashed)
|
||||
) {
|
||||
// If asset is already in the bucket we don't need to recalculate
|
||||
// asset store containers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue