add readOnly property to Input component

pull/287/head
Szymon Lesisz 6 years ago committed by Szymon Lesisz
parent 98b1c6bf2c
commit 682fc97829

@ -183,6 +183,7 @@ class Input extends PureComponent {
autocapitalize={this.props.autocapitalize}
spellCheck={this.props.spellCheck}
value={this.props.value}
readOnly={this.props.readOnly}
onChange={this.props.onChange}
borderColor={this.getColor(this.props.state)}
disabled={this.props.isDisabled}
@ -218,6 +219,7 @@ Input.propTypes = {
icon: PropTypes.node,
spellCheck: PropTypes.string,
value: PropTypes.string,
readOnly: PropTypes.bool,
onChange: PropTypes.func,
state: PropTypes.string,
bottomText: PropTypes.string,

@ -119,6 +119,7 @@ const AccountReceive = (props: Props) => {
<Row>
<Input
type="text"
readOnly
value={address}
isPartiallyHidden={isAddressHidden}
trezorAction={isAddressVerifying ? (

Loading…
Cancel
Save