mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fixes: Create app version from is empty if we delete another version. (#7720)
This commit is contained in:
parent
6750bf559d
commit
3ec5e6d999
1 changed files with 8 additions and 5 deletions
|
|
@ -114,11 +114,14 @@ export const CustomSelect = ({ ...props }) => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<CreateVersion
|
||||
{...props}
|
||||
showCreateAppVersion={showCreateAppVersion}
|
||||
setShowCreateAppVersion={setShowCreateAppVersion}
|
||||
/>
|
||||
{showCreateAppVersion && (
|
||||
<CreateVersion
|
||||
{...props}
|
||||
showCreateAppVersion={showCreateAppVersion}
|
||||
setShowCreateAppVersion={setShowCreateAppVersion}
|
||||
/>
|
||||
)}
|
||||
|
||||
<EditVersion {...props} showEditAppVersion={showEditAppVersion} setShowEditAppVersion={setShowEditAppVersion} />
|
||||
{/* When we merge this code to EE update the defaultAppEnvironments object with rest of default environments (then delete this comment)*/}
|
||||
<ConfirmDialog
|
||||
|
|
|
|||
Loading…
Reference in a new issue