mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Fix :: Modal firing onOpen event more than once (#6124)
This commit is contained in:
parent
c981adc52d
commit
d75ac78f12
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ export const Modal = function Modal({
|
|||
onClick={(event) => {
|
||||
event.stopPropagation();
|
||||
setShowModal(true);
|
||||
setExposedVariable('show', true).then(() => fireEvent('onOpen'));
|
||||
setExposedVariable('show', true);
|
||||
}}
|
||||
data-cy={`${dataCy}-launch-button`}
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in a new issue