1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-27 10:48:22 +00:00

remove autoSelect prop from inputs

This commit is contained in:
slowbackspace 2019-05-13 15:24:54 +02:00
parent e001d14854
commit 237aed77b2
3 changed files with 0 additions and 6 deletions

View File

@ -114,7 +114,6 @@ const AccountReceive = (props: Props) => {
<Input
type="text"
readOnly
autoSelect
topLabel={props.intl.formatMessage(l10nCommonMessages.TR_ADDRESS)}
value={address}
isPartiallyHidden={isAddressHidden}

View File

@ -120,7 +120,6 @@ const AccountReceive = (props: Props) => {
<Input
type="text"
readOnly
autoSelect
topLabel={props.intl.formatMessage(l10nCommonMessages.TR_ADDRESS)}
value={address}
isPartiallyHidden={isAddressHidden}

View File

@ -108,7 +108,6 @@ class SignVerify extends Component<Props> {
name="signAddress"
value={account.descriptor}
type="text"
autoSelect
readOnly
/>
</Row>
@ -129,7 +128,6 @@ class SignVerify extends Component<Props> {
name="signSignature"
value={signSignature}
rows={4}
autoSelect
maxRows={4}
maxLength={255}
readOnly
@ -158,7 +156,6 @@ class SignVerify extends Component<Props> {
topLabel={this.props.intl.formatMessage(
l10nCommonMessages.TR_ADDRESS
)}
autoSelect
name="verifyAddress"
value={verifyAddress}
onChange={this.handleInputChange}
@ -181,7 +178,6 @@ class SignVerify extends Component<Props> {
<Row>
<TextArea
topLabel={this.props.intl.formatMessage(l10nMessages.TR_SIGNATURE)}
autoSelect
name="verifySignature"
value={verifySignature}
onChange={this.handleInputChange}