mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat(web): improve feedback for favorite and archive actions (#7232)
This commit is contained in:
parent
b3c7bebbd4
commit
b896d45ee7
11 changed files with 24 additions and 12 deletions
|
|
@ -11,7 +11,7 @@
|
|||
import MenuOption from '../../shared-components/context-menu/menu-option.svelte';
|
||||
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
||||
|
||||
export let onArchive: OnArchive | undefined = undefined;
|
||||
export let onArchive: OnArchive;
|
||||
|
||||
export let menuItem = false;
|
||||
export let unarchive = false;
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
asset.isArchived = isArchived;
|
||||
}
|
||||
|
||||
onArchive?.(ids, isArchived);
|
||||
onArchive(ids, isArchived);
|
||||
|
||||
notificationController.show({
|
||||
message: `${isArchived ? 'Archived' : 'Unarchived'} ${ids.length}`,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue