fix: do not trigger modal submission on <select>

production
Paul Makles 2023-02-22 17:00:47 +01:00
parent de85527cd8
commit 46eec5a132
No known key found for this signature in database
GPG Key ID: 5059F398521BB0F6
1 changed files with 1 additions and 0 deletions

View File

@ -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");
}
}