mirror of
https://github.com/trezor/trezor-wallet
synced 2024-12-26 00:48:35 +00:00
pass number instead of string in maxLength
This commit is contained in:
parent
375136a586
commit
e0cb188603
@ -98,7 +98,7 @@ class SignVerify extends Component <Props> {
|
||||
onChange={this.handleInputChange}
|
||||
rows={4}
|
||||
maxRows={4}
|
||||
maxLength="255"
|
||||
maxLength={255}
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
@ -109,7 +109,7 @@ class SignVerify extends Component <Props> {
|
||||
rows={4}
|
||||
autoSelect
|
||||
maxRows={4}
|
||||
maxLength="255"
|
||||
maxLength={255}
|
||||
readOnly
|
||||
/>
|
||||
</Row>
|
||||
@ -147,7 +147,7 @@ class SignVerify extends Component <Props> {
|
||||
onChange={this.handleInputChange}
|
||||
rows={4}
|
||||
maxRows={4}
|
||||
maxLength="255"
|
||||
maxLength={255}
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
@ -159,7 +159,7 @@ class SignVerify extends Component <Props> {
|
||||
onChange={this.handleInputChange}
|
||||
rows={4}
|
||||
maxRows={4}
|
||||
maxLength="255"
|
||||
maxLength={255}
|
||||
/>
|
||||
</Row>
|
||||
<RowButtons>
|
||||
|
Loading…
Reference in New Issue
Block a user