fix(web): escape shortcut handling (#26096)

This commit is contained in:
Michel Heusschen
2026-02-11 18:55:28 +01:00
committed by GitHub
parent e54678e0d6
commit 913904f418
5 changed files with 17 additions and 119 deletions
+2 -2
View File
@@ -10,7 +10,7 @@
import Combobox, { type ComboBoxOption } from '../components/shared-components/combobox.svelte';
interface Props {
onClose: () => void;
onClose: (updated?: boolean) => void;
assetIds: string[];
}
@@ -33,7 +33,7 @@
const updatedIds = await tagAssets({ tagIds: [...selectedIds], assetIds, showNotification: false });
eventManager.emit('AssetsTag', updatedIds);
onClose();
onClose(true);
};
const handleSelect = async (option?: ComboBoxOption) => {