mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Fix error in create version modal (#2942)
This commit fixes a bug that occurs in the app version modal popup when an existing version is chosen from the dropdown menu. Fixes #2941
This commit is contained in:
parent
e8e20baf55
commit
ba32c63edb
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ const CreateVersionModal = function CreateVersionModal({
|
|||
}
|
||||
};
|
||||
const options = appVersions.map((version) => {
|
||||
return { ...version, label: version.name, value: version.name };
|
||||
return { ...version, label: version.name, value: version };
|
||||
});
|
||||
const width = '100%';
|
||||
const height = 32;
|
||||
|
|
|
|||
Loading…
Reference in a new issue