mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fix :: toast bug add new row
This commit is contained in:
parent
e40f0a1f31
commit
13ae5ec013
1 changed files with 8 additions and 1 deletions
|
|
@ -20,7 +20,14 @@ function DrawerFooter({ fetching, onClose, isEditMode, onCreate, onEdit }) {
|
|||
</ButtonSolid>
|
||||
)}
|
||||
{!isEditMode && (
|
||||
<ButtonSolid disabled={fetching} data-cy={`create-button`} onClick={onCreate}>
|
||||
<ButtonSolid
|
||||
disabled={fetching}
|
||||
data-cy={`create-button`}
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
onCreate();
|
||||
}}
|
||||
>
|
||||
Create
|
||||
</ButtonSolid>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue