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:
parent
e001d14854
commit
237aed77b2
@ -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}
|
||||||
|
@ -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}
|
||||||
|
@ -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}
|
||||||
|
Loading…
Reference in New Issue
Block a user