@lowcodeunit/applications-flow-common 1.39.66-exceptions → 1.39.67-exceptions
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 +4 -1
- package/esm2020/lib/services/project.service.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +4 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +4 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -633,7 +633,7 @@ class ProjectService {
|
|
|
633
633
|
async SaveEnterpriseAsCode(state, eac) {
|
|
634
634
|
return new Promise((resolve, reject) => {
|
|
635
635
|
state.Loading = true;
|
|
636
|
-
|
|
636
|
+
console.log('eac: ', eac);
|
|
637
637
|
this.appsFlowSvc.SaveEnterpriseAsCode(eac).subscribe(async (response) => {
|
|
638
638
|
if (response.Status.Code === 0) {
|
|
639
639
|
resolve(response.Status);
|
|
@@ -5045,7 +5045,10 @@ class ProcessorDetailsFormComponent {
|
|
|
5045
5045
|
this.SetupProcessorDetailsForm();
|
|
5046
5046
|
}
|
|
5047
5047
|
SourceControlChanged(event) {
|
|
5048
|
+
console.log('sc changed');
|
|
5048
5049
|
this.IsSourceControlValid = this.SourceControlFormControl.valid;
|
|
5050
|
+
this.BuildPathFormControl.patchValue(null);
|
|
5051
|
+
this.BuildPathOptions = null;
|
|
5049
5052
|
this.listBuildPaths();
|
|
5050
5053
|
}
|
|
5051
5054
|
ProcessorTypeChanged(event) {
|