Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Commit

Permalink
Fixed textbox floated active state
Browse files Browse the repository at this point in the history
  • Loading branch information
romanslonov committed May 22, 2019
1 parent 85914de commit 02189fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Textbox/main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default {
return [
`textbox--size-${this.size}`,
{ 'textbox--floated': this.floated },
{ 'textbox--floated-active': this.floated && this.value !== '' },
{ 'textbox--floated-active': this.floated && this.nativeInputValue !== '' },
{ 'textbox--wide': this.wide },
{ 'textbox--error': this.error },
];
Expand Down

0 comments on commit 02189fe

Please sign in to comment.