File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -163,17 +163,17 @@ export default {
163163} 
164164
165165if  ( 
166- ( this . schema . validation  &&  this . schema . validation  ===  ' onBlur' )  || 
167- ( ! this . schema . validation  &&  objGet ( this . formOptions ,  ' validateAfterBlur' ,  false )  ===  true ) 
166+ ( this . schema . validation  &&  this . schema . validation  ===  " onBlur" )  || 
167+ ( ! this . schema . validation  &&  objGet ( this . formOptions ,  " validateAfterBlur" ,  false )  ===  true ) 
168168)  { 
169169if  ( this . errors  &&  this . errors [ 0 ] )  { 
170- this . validateSchemaField ( ) 
170+ this . validateSchemaField ( ) ; 
171171} 
172172}  else  if  ( 
173- ( this . schema . validation  &&  this . schema . validation  ===  ' onChanged' )  || 
174- ( ! this . schema . validation  &&  objGet ( this . formOptions ,  ' validateAfterChanged' ,  false )  ===  true ) 
173+ ( this . schema . validation  &&  this . schema . validation  ===  " onChanged" )  || 
174+ ( ! this . schema . validation  &&  objGet ( this . formOptions ,  " validateAfterChanged" ,  false )  ===  true ) 
175175)  { 
176- this . validateSchemaField ( ) 
176+ this . validateSchemaField ( ) ; 
177177} 
178178} 
179179} , 
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ export default {
132132methods:  { 
133133onBlur (value , model ) {
134134if (objGet (this .options , " validateAfterBlur" false )) {
135- this .validateModelField (model)
135+ this .validateModelField (model); 
136136} 
137137}, 
138138
@@ -156,7 +156,7 @@ export default {
156156//  Remove old child errors
157157Object .keys (this .errors )
158158.filter ((key ) =>  { 
159- return  this .errors [key].field .model  ===  child .field .model 
159+ return  this .errors [key].field .model  ===  child .field .model ; 
160160}) 
161161.forEach (key  =>  delete  this .errors [key]); 
162162
                         You can’t perform that action at this time. 
           
                  
0 commit comments