1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-30 20:28:09 +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 <Input
type="text" type="text"
readOnly readOnly
autoSelect
topLabel={props.intl.formatMessage(l10nCommonMessages.TR_ADDRESS)} topLabel={props.intl.formatMessage(l10nCommonMessages.TR_ADDRESS)}
value={address} value={address}
isPartiallyHidden={isAddressHidden} isPartiallyHidden={isAddressHidden}

View File

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

View File

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