fix: stopPropagation missing from model selector

This commit is contained in:
Zoe
2026-02-26 13:58:59 -06:00
parent 6963d1e234
commit 1dc176c33b
+3 -1
View File
@@ -215,7 +215,9 @@ const handleSearchKeyDown = (event: KeyboardEvent) => {
} }
}; };
const unbindShortcut = addShortcut(['ctrl', 'shift', 'm'], () => { const unbindShortcut = addShortcut(['ctrl', 'shift', 'm'], (event) => {
event.preventDefault();
event.stopPropagation();
toggleDropdown(); toggleDropdown();
}); });