Skip to content

Commit

Permalink
Avoid submitting default description on IdV creation
Browse files Browse the repository at this point in the history
  • Loading branch information
JayaShakthi97 committed Aug 6, 2024
1 parent a9f4e6c commit 9a39d43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ export const IdvpCreateWizard: FunctionComponent<IDVPCreateWizardInterface> = (

// Update the name and description on the template with the values from the form.
idvpTemplate.Name = values?.name ?? idvpTemplate.Name;
idvpTemplate.description = values?.description ?? idvpTemplate.description;
idvpTemplate.description = values?.description;

// Update the config properties on the template with the values from the form.
for(const configs of idvpTemplate?.configProperties) {
Expand Down

0 comments on commit 9a39d43

Please sign in to comment.