Skip to content

Commit

Permalink
Merge pull request #520 from manniL/patch-1
Browse files Browse the repository at this point in the history
fix: correct error message in anyDirty example
  • Loading branch information
Dobromir Hristov committed Aug 8, 2019
2 parents b29587e + 3258241 commit 34ec885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/partials/examples/ExampleAnyDirty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.form-group(:class="{ 'form-group--error': $v.fieldB.$error }")
label.form__label Field B
input.form__input(v-model.trim="$v.fieldB.$model")
.error(v-if="!$v.fieldB.required") Field A is required.
.error(v-if="!$v.fieldB.required") Field B is required.
.error(v-if="!$v.fieldB.minLength")
| Field B must have at least {{$v.fieldB.$params.minLength.min}} letters.

Expand Down

0 comments on commit 34ec885

Please sign in to comment.