rb-document-form-constructor 0.6.6 → 0.6.8

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.
@@ -11148,8 +11148,9 @@ var script$3 = {
11148
11148
  s.columns.forEach(c => {
11149
11149
  c.fields.forEach(f => {
11150
11150
  if (f.required && this.isValueEmpty(f.name)) {
11151
+ console.log(f.name, f.required, this.isValueEmpty(f.name));
11151
11152
  Vue.set(this.validationState, f.name, false);
11152
- Vue.set(this.validationState, `${f.name}__feedback`, `Поле "${f.labelRu} обязательно"`);
11153
+ Vue.set(this.validationState, `${f.name}__feedback`, `Поле "${f.labelRu}" обязательно`);
11153
11154
  } else {
11154
11155
  Vue.set(this.validationState, f.name, null);
11155
11156
  }