Moved shortcut prevention to all modals

This commit is contained in:
Mitchell McCaffrey
2020-06-27 10:21:50 +10:00
parent 62587e471a
commit 1da7ee9e95
3 changed files with 20 additions and 11 deletions

View File

@@ -79,7 +79,12 @@ function MapMenu({
}}
contentRef={handleModalContent}
>
{children}
<div
onKeyDown={(e) => e.stopPropagation()}
onKeyUp={(e) => e.stopPropagation()}
>
{children}
</div>
</Modal>
);
}