neo.mjs 4.0.57 → 4.0.58

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "4.0.57",
3
+ "version": "4.0.58",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -143,15 +143,11 @@ class Container extends BaseContainer {
143
143
  * This can be useful for create entity forms which show up "clean", when pressing a submit button.
144
144
  */
145
145
  updateValidationIndicators() {
146
- let fields = this.getFields(),
147
- form = this.component,
148
- vdom = form.vdom;
146
+ let fields = this.getFields();
149
147
 
150
148
  fields.forEach(item => {
151
- item.updateValidationIndicators?.(); // silent update
149
+ item.updateValidationIndicators?.(false);
152
150
  });
153
-
154
- form.vdom = vdom;
155
151
  }
156
152
  }
157
153