style(input): fix lints

This commit is contained in:
ramonornela
2016-11-17 09:37:35 -02:00
parent cfbc5eabca
commit fa54a4e02d
3 changed files with 8 additions and 6 deletions

View File

@ -221,7 +221,7 @@ export class TextInput extends InputBase {
}
// By default, password inputs clear after focus when they have content
if(this.type === 'password' && this.clearOnEdit !== false) {
if (this.type === 'password' && this.clearOnEdit !== false) {
this.clearOnEdit = true;
}
}