Skip to content

Commit 0a18b45

Browse files
committed
build
1 parent 3d255a0 commit 0a18b45

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

dist/vue-formly.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue-formly v2.3.1
2+
* vue-formly v2.3.2
33
* https://github.com/matt-sanders/vue-formly
44
* Released under the MIT License.
55
*/
@@ -760,7 +760,10 @@ return /******/ (function(modules) { // webpackBootstrap
760760

761761
(0, _keys2.default)(this.field.validators).forEach(function (validKey) {
762762
if (!_this.form.$errors[_this.field.key][validKey]) _this.$set(_this.form.$errors[_this.field.key], validKey, false);
763-
if (!_this.field.required && !_this.model[_this.field.key]) return;
763+
if (!_this.field.required && !_this.model[_this.field.key]) {
764+
(0, _util.setError)(_this.form, _this.field.key, validKey, false);
765+
return;
766+
}
764767

765768
var validator = _this.field.validators[validKey];
766769
var validatorMessage = false;

0 commit comments

Comments
 (0)