@lowcodeunit/applications-flow-common 1.33.281-lets-get-social-ish → 1.33.282-lets-get-social-ish
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/devops-source-control-form/devops-source-control-form.component.mjs +4 -2
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +5 -4
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +7 -5
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +7 -4
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4033,6 +4033,7 @@ class DevopsSourceControlFormComponent {
|
|
|
4033
4033
|
};
|
|
4034
4034
|
const scLookup = `github://${source.Organization}/${source.Repository}`;
|
|
4035
4035
|
saveEnvReq.Environment.Sources[scLookup] = source;
|
|
4036
|
+
console.log('save SC: ', saveEnvReq);
|
|
4036
4037
|
let resp = this.eacSvc.SaveEnvironmentAsCode(saveEnvReq);
|
|
4037
4038
|
resp.then((res) => {
|
|
4038
4039
|
this.SaveStatusEvent.emit(res);
|
|
@@ -4158,7 +4159,8 @@ class DevopsSourceControlFormComponent {
|
|
|
4158
4159
|
}
|
|
4159
4160
|
}
|
|
4160
4161
|
setupFormControls() {
|
|
4161
|
-
|
|
4162
|
+
this.destroyFormControls();
|
|
4163
|
+
console.log("Source Control: ", this.EditingSourceControl);
|
|
4162
4164
|
this.DevOpsSourceControlFormGroup.addControl('devOpsActionLookup', new FormControl(this.DevOpsActionLookup || '', []));
|
|
4163
4165
|
this.DevOpsSourceControlFormGroup.addControl([this.SourceControlRoot, 'organization'].join(''), new FormControl(this.EditingSourceControl.Organization ?? '', Validators.required));
|
|
4164
4166
|
this.DevOpsSourceControlFormGroup.addControl([this.SourceControlRoot, 'repository'].join(''), new FormControl(this.EditingSourceControl.Repository ?? '', Validators.required));
|
|
@@ -4728,15 +4730,16 @@ class ProcessorDetailsFormComponent {
|
|
|
4728
4730
|
}
|
|
4729
4731
|
listBuildPaths() {
|
|
4730
4732
|
this.State.Loading = true;
|
|
4733
|
+
console.log("Source Control: ", this.SourceControls[this.SourceControlFormControl.value]);
|
|
4731
4734
|
this.appsFlowSvc
|
|
4732
4735
|
.ListBuildPaths(this.SourceControls[this.SourceControlFormControl.value]?.Organization, this.SourceControls[this.SourceControlFormControl.value]?.Repository)
|
|
4733
4736
|
.subscribe((response) => {
|
|
4734
4737
|
this.BuildPathOptions = response.Model;
|
|
4735
4738
|
console.log("build path options: ", this.BuildPathOptions);
|
|
4736
4739
|
this.State.Loading = false;
|
|
4737
|
-
if (this.BuildPathOptions?.length === 1) {
|
|
4738
|
-
|
|
4739
|
-
}
|
|
4740
|
+
// if (this.BuildPathOptions?.length === 1) {
|
|
4741
|
+
// this.BuildPathFormControl.setValue(this.BuildPathOptions[0]);
|
|
4742
|
+
// }
|
|
4740
4743
|
});
|
|
4741
4744
|
}
|
|
4742
4745
|
setupLcuTypeSubForm() {
|