@lowcodeunit/applications-flow-common 1.37.146-ui-ux-update → 1.37.147-ui-ux-update
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +1 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -5107,7 +5107,7 @@ class ProcessorDetailsFormComponent {
|
|
5107
5107
|
this.ProcessorDetailsFormGroup.addControl('sourceControl', this.formBldr.control(this.EditingApplication.LowCodeUnit?.SourceControlLookup || '', [Validators.required]));
|
5108
5108
|
this.IsSourceControlValid = this.SourceControlFormControl.valid;
|
5109
5109
|
this.ProcessorDetailsFormGroup.addControl('buildPath', this.formBldr.control(this.EditingApplication.LowCodeUnit?.Path || '', [Validators.required]));
|
5110
|
-
this.ProcessorDetailsFormGroup.addControl('build', this.formBldr.control(this.EditingApplication.LowCodeUnit?.
|
5110
|
+
this.ProcessorDetailsFormGroup.addControl('build', this.formBldr.control(this.EditingApplication.LowCodeUnit?.Build || 'latest', [Validators.required]));
|
5111
5111
|
this.listBuildPaths();
|
5112
5112
|
}
|
5113
5113
|
setupLCUApplicationPointerForm() {
|