@lowcodeunit/applications-flow-common 1.37.147-ui-ux-update → 1.37.148-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.
@@ -4876,12 +4876,12 @@ class ProcessorDetailsFormComponent {
4876
4876
  if (!this.EditingApplication) {
4877
4877
  this.CreateNewApplication();
4878
4878
  }
4879
- else {
4880
- this.setupProcessorDetailsForm();
4881
- }
4882
- // else if (this.EditingApplication && !this.ProcessorDetailsFormGroup) {
4879
+ // else {
4883
4880
  // this.setupProcessorDetailsForm();
4884
4881
  // }
4882
+ else if (this.EditingApplication && !this.ProcessorDetailsFormGroup) {
4883
+ this.SetupProcessorDetailsForm();
4884
+ }
4885
4885
  // if (this.IsDisabled) {
4886
4886
  // this.setupProcessorDetailsForm();
4887
4887
  // this.ProcessorDetailsFormGroup.disable();
@@ -4999,7 +4999,7 @@ class ProcessorDetailsFormComponent {
4999
4999
  SetEditingApplication(appLookup) {
5000
5000
  this.EditingApplication = new EaCApplicationAsCode();
5001
5001
  this.EditingApplicationLookup = appLookup;
5002
- this.setupProcessorDetailsForm();
5002
+ this.SetupProcessorDetailsForm();
5003
5003
  }
5004
5004
  SourceControlChanged(event) {
5005
5005
  this.IsSourceControlValid = this.SourceControlFormControl.valid;
@@ -5089,7 +5089,7 @@ class ProcessorDetailsFormComponent {
5089
5089
  }
5090
5090
  }
5091
5091
  }
5092
- setupProcessorDetailsForm() {
5092
+ SetupProcessorDetailsForm() {
5093
5093
  this.ProcessorType = this.EditingApplication?.Processor?.Type || '';
5094
5094
  // console.log('EDITING APP = ', this.EditingApplication);
5095
5095
  this.ProcessorDetailsFormGroup;