We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8df865 commit b515e44Copy full SHA for b515e44
src/components/errorDisplay.vue
@@ -8,7 +8,7 @@
8
computed: {
9
message(){
10
let message = false;
11
- if ( !( this.field in this.form.$errors ) ) return message;
+ if ( !( this.field in this.form.$errors ) || this.form[ this.field ].$active || !this.form[this.field].$dirty ) return message;
12
let errors = this.form.$errors[ this.field ];
13
Object.keys( errors ).some( errorKey => {
14
if ( typeof errors[ errorKey ] != 'boolean' ){
0 commit comments