@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.
- package/esm2020/lib/forms/base-form-control.mjs +2 -2
- package/fesm2015/esfaenza-forms-and-validations.mjs +1 -1
- package/fesm2015/esfaenza-forms-and-validations.mjs.map +1 -1
- package/fesm2020/esfaenza-forms-and-validations.mjs +1 -1
- package/fesm2020/esfaenza-forms-and-validations.mjs.map +1 -1
- package/package.json +1 -2
|
@@ -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]
|
|
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];
|