feat: wizard doesn't close when press esc with modal open

This commit is contained in:
Arman
2022-10-12 12:47:53 +02:00
parent 3b8088b715
commit 7964de4a3e
+1 -1
View File
@@ -27,7 +27,7 @@
let showExitModal = false;
function handleKeydown(event: KeyboardEvent) {
if (event.key === 'Escape') {
if (event.key === 'Escape' && !showExitModal) {
event.preventDefault();
wizard.hide();
}