#215: do not reload captcha after form errors was cleared

This commit is contained in:
SleepWalker 2016-10-09 16:48:41 +03:00
parent c55c0ce9c7
commit 7b41ca5c4d

View File

@ -102,7 +102,9 @@ export default class FormModel {
}
}
this.fields[fieldId].onFormInvalid();
if (this.hasErrors()) {
this.fields[fieldId].onFormInvalid();
}
});
}