Cleanup js components

This commit is contained in:
djmaze 2020-11-03 16:11:04 +01:00
parent 65e1b58877
commit 948663519e
6 changed files with 7 additions and 56 deletions

View file

@ -11,7 +11,7 @@ class TextAreaComponent extends AbstractInput {
super(params);
this.rows = params.rows || DEFAULT_ROWS;
this.spellcheck = undefined === params.spellcheck ? false : !!params.spellcheck;
this.spellcheck = !!params.spellcheck;
}
}