fix: do not trigger modal submission on <select>
parent
57be4e39bc
commit
a854d070c2
|
|
@ -13,6 +13,7 @@ export default observer(() => {
|
|||
if (event.key === "Escape") {
|
||||
modalController.pop("close");
|
||||
} else if (event.key === "Enter") {
|
||||
if (event.target instanceof HTMLSelectElement) return;
|
||||
modalController.pop("confirm");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue