@esfaenza/forms-and-validations 15.2.12 → 15.2.14

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.
@@ -1969,7 +1969,7 @@ class BaseFormControl {
1969
1969
  // Dopodiché scrivo tutte le proprietà
1970
1970
  for (let i = 0; i < this.BindCheckingGroups.length; i++) {
1971
1971
  let t = this.BindCheckingGroups[i];
1972
- desc = desc.replace(t.global, (s[t.prop] != null && s[t.prop] != undefined) ? t.whenexists : "");
1972
+ desc = desc.replace(t.global, (s[t.prop] !== null && s[t.prop] !== undefined && s[t.prop] !== "") ? t.whenexists : "");
1973
1973
  }
1974
1974
  for (let i = 0; i < this.BindProperties.length; i++) {
1975
1975
  let t = this.BindProperties[i];