Skip to content

Commit 19ecdbb

Browse files
committed
some comments
1 parent 8db23f8 commit 19ecdbb

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/formGenerator.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ div
207207
208208
// Child field executed validation
209209
onFieldValidated(res, errors, field) {
210+
// Remove old errors for this field
210211
this.errors = this.errors.filter(e => e.field != field.schema);
211212
212-
// Remove old errors for this field
213213
if (!res && errors && errors.length > 0) {
214214
// Add errors with this field
215215
errors.forEach((err) => {

test/unit/webpack.test.config.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ module.exports = {
6868
autoprefixer: {
6969
browsers: ["last 2 versions"]
7070
},
71-
// Comment this, if you would like to debug under `npm run ci`
72-
/*loaders: {
71+
72+
// Comment out this, if you would like to debug under `npm run ci`
73+
loaders: {
7374
js: "isparta"
74-
}*/
75+
}
7576
}
7677

7778
};

0 commit comments

Comments
 (0)