Skip to content

Commit

Permalink
fix: missing error messages of form fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ayZagen committed Jun 5, 2020
1 parent 4c6cfa2 commit 18da96d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ui/views/FillMissing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<p-text-field
:key="field"
v-model="options.value"
:error-messages="options.errors"
v-bind="options.attrs"
:type="options.type"
:label="options.label"
Expand Down
1 change: 1 addition & 0 deletions src/ui/views/ForgotPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<p-text-field
:key="field"
v-model="options.value"
:error-messages="options.errors"
v-bind="options.attrs"
:type="options.type"
:label="options.label"
Expand Down
1 change: 1 addition & 0 deletions src/ui/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
:key="field"
v-model="options.value"
v-bind="options.attrs"
:error-messages="options.errors"
:type="options.type"
:label="options.label"
:rules="options.validator ?
Expand Down

0 comments on commit 18da96d

Please sign in to comment.