mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(web): minor issues (#3499)
* Replace isArchived with isFavorite * Remove excess AssetSelectControlBar
This commit is contained in:
parent
e53625b067
commit
690b87e375
2 changed files with 1 additions and 4 deletions
|
|
@ -166,7 +166,7 @@
|
|||
message: asset.isFavorite ? `Added to favorites` : `Removed from favorites`,
|
||||
});
|
||||
} catch (error) {
|
||||
handleError(error, `Unable to ${asset.isArchived ? `add asset to` : `remove asset from`} favorites`);
|
||||
handleError(error, `Unable to ${asset.isFavorite ? `add asset to` : `remove asset from`} favorites`);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue