@ksremp/ngx-ksremp-app-lib 1.0.5 → 1.0.6

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.
@@ -26590,12 +26590,6 @@ class DynamicFormQuestionComponent {
26590
26590
  if ((localStorage.getItem('disableFieldsOnSignup') === 'true') && localStorage.getItem("flowKey") == '345') {
26591
26591
  this.disableFields();
26592
26592
  }
26593
- if (localStorage.getItem("language") === "es") {
26594
- this.wcEmployerValidationMsg = 'El último día trabajado que figura en su solicitud corresponde a esta semana; por lo tanto, debe seleccionar "sí" en la pregunta "¿Realizó algún trabajo durante la semana?"';
26595
- }
26596
- else {
26597
- this.wcEmployerValidationMsg = 'The last day worked reported on your claim falls within this week, you must select "yes" for "Did you perform any work during the week?"';
26598
- }
26599
26593
  }
26600
26594
  checkFlowKey() {
26601
26595
  if (this.currentflowkey === 'register-claimant') {
@@ -27040,6 +27034,12 @@ class DynamicFormQuestionComponent {
27040
27034
  this.wcEmployerGrid?.submit();
27041
27035
  control.markAsDirty();
27042
27036
  if (error?.wcEmployerValidation) {
27037
+ if (localStorage.getItem("language") === "es") {
27038
+ this.wcEmployerValidationMsg = 'El último día trabajado que figura en su solicitud corresponde a esta semana; por lo tanto, debe seleccionar "sí" en la pregunta "¿Realizó algún trabajo durante la semana?"';
27039
+ }
27040
+ else {
27041
+ this.wcEmployerValidationMsg = 'The last day worked reported on your claim falls within this week, you must select "yes" for "Did you perform any work during the week?"';
27042
+ }
27043
27043
  message = this.wcEmployerValidationMsg;
27044
27044
  return message;
27045
27045
  }