File tree 2 files changed +2
-2
lines changed
packages/vuetify/src/components 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export default Selectable.extend({
60
60
if ( this . disabled && ! this . inputIndeterminate ) return undefined
61
61
if ( this . hasError && this . shouldValidate ) return 'error'
62
62
if ( this . hasSuccess ) return 'success'
63
- if ( this . hasColor ) return this . computedColor
63
+ if ( this . hasColor !== null ) return this . computedColor
64
64
return undefined
65
65
} ,
66
66
} ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export default Selectable.extend({
59
59
validationState ( ) : string | undefined {
60
60
if ( this . hasError && this . shouldValidate ) return 'error'
61
61
if ( this . hasSuccess ) return 'success'
62
- if ( this . hasColor ) return this . computedColor
62
+ if ( this . hasColor !== null ) return this . computedColor
63
63
return undefined
64
64
} ,
65
65
switchData ( ) : VNodeData {
You can’t perform that action at this time.
0 commit comments