@reusa/ngx-reusa-app-lib 0.0.998 → 0.1.1

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.
@@ -24253,8 +24253,6 @@ class DynamicFormQuestionComponent {
24253
24253
  // }
24254
24254
  disableFields() {
24255
24255
  if (this.checkFlowKey()) {
24256
- this.form.get('phone').disable();
24257
- this.form.get('verification').disable();
24258
24256
  this.form.get('email').disable();
24259
24257
  this.form.get('username').disable();
24260
24258
  this.form.get('password').disable();
@@ -24271,8 +24269,6 @@ class DynamicFormQuestionComponent {
24271
24269
  }
24272
24270
  }
24273
24271
  enableFields() {
24274
- this.form.get('phone').enable();
24275
- this.form.get('verification').enable();
24276
24272
  this.form.get('email').enable();
24277
24273
  this.form.get('username').enable();
24278
24274
  this.form.get('password').enable();
@@ -24299,7 +24295,7 @@ class DynamicFormQuestionComponent {
24299
24295
  this.claimantService.checkIfUserAlreadyExist(ssnfromuser).subscribe((x) => {
24300
24296
  if (x != null) {
24301
24297
  this.form.get('phone').setValue(x);
24302
- // this.form.get('phone').disable();
24298
+ this.form.get('phone').disable();
24303
24299
  }
24304
24300
  //console.info('test with x ', x);
24305
24301
  }, (err) => {