We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b159d6 commit f07ff18Copy full SHA for f07ff18
packages/simplr-forms-core/src/stores/form-store.ts
@@ -379,6 +379,8 @@ export class FormStore extends ActionEmitter {
379
} as FieldState));
380
}
381
});
382
+
383
+ return this.RecalculateDependentFormState(state);
384
385
386
@@ -403,6 +405,8 @@ export class FormStore extends ActionEmitter {
403
405
404
406
407
408
409
410
411
412
@@ -503,7 +507,7 @@ export class FormStore extends ActionEmitter {
503
507
if (!updater.Touched && fieldState.Touched) {
504
508
updater.Touched = true;
505
509
506
- if (!fieldState.Validating) {
510
+ if (fieldState.Validating) {
511
updater.Validating = true;
512
513
0 commit comments