mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Fixes Modal won't reappear after closing it with ESC (#2319)
This commit is contained in:
parent
c152be5d55
commit
ec7c8749b6
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ export const Modal = function Modal({
|
|||
keyboard={true}
|
||||
enforceFocus={false}
|
||||
animation={false}
|
||||
onEscapeKeyDown={() => setShowModal(false)}
|
||||
onEscapeKeyDown={() => hideModal()}
|
||||
>
|
||||
{containerProps.mode === 'edit' && (
|
||||
<ConfigHandle id={id} component={component} setSelectedComponent={containerProps.onComponentClick} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue