mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
js -> jsx
This commit is contained in:
parent
3bcf23f8fa
commit
08ccf55577
43 changed files with 2342 additions and 2347 deletions
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
import Utils from 'Common/Utils';
|
||||
import {isUnd} from 'Common/Utils';
|
||||
import {componentExportHelper} from 'Component/Abstract';
|
||||
import {AbstractInput} from 'Component/AbstractInput';
|
||||
|
||||
|
|
@ -13,7 +13,7 @@ class TextAreaComponent extends AbstractInput
|
|||
super(params);
|
||||
|
||||
this.rows = params.rows || 5;
|
||||
this.spellcheck = Utils.isUnd(params.spellcheck) ? false : !!params.spellcheck;
|
||||
this.spellcheck = isUnd(params.spellcheck) ? false : !!params.spellcheck;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue