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 +1 -1
- package/src/form/Container.mjs +2 -6
package/package.json
CHANGED
package/src/form/Container.mjs
CHANGED
|
@@ -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?.();
|
|
149
|
+
item.updateValidationIndicators?.(false);
|
|
152
150
|
});
|
|
153
|
-
|
|
154
|
-
form.vdom = vdom;
|
|
155
151
|
}
|
|
156
152
|
}
|
|
157
153
|
|