fix: stopPropagation missing from model selector
This commit is contained in:
@@ -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();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user