mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix sender-to-recipient export and non-existent translation key.
This commit is contained in:
parent
3d3bd0eaf0
commit
ca5bce477e
@ -59,11 +59,9 @@ class SenderToRecipient extends Component {
|
|||||||
SenderToRecipient.propTypes = {
|
SenderToRecipient.propTypes = {
|
||||||
senderName: PropTypes.string,
|
senderName: PropTypes.string,
|
||||||
senderAddress: PropTypes.string,
|
senderAddress: PropTypes.string,
|
||||||
recipientName: PropTypes.string,
|
recipientName: PropTypes.string,
|
||||||
recipientAddress: PropTypes.string,
|
recipientAddress: PropTypes.string,
|
||||||
t: PropTypes.func,
|
t: PropTypes.func,
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = connect()(SenderToRecipient)
|
||||||
AccountDropdowns: connect()(SenderToRecipient),
|
|
||||||
}
|
|
||||||
|
@ -110,7 +110,7 @@ TxList.prototype.renderTransactionListItem = function (transaction, conversionRa
|
|||||||
|
|
||||||
if (isUnapproved) {
|
if (isUnapproved) {
|
||||||
opts.onClick = () => showConfTxPage({ id: transactionId })
|
opts.onClick = () => showConfTxPage({ id: transactionId })
|
||||||
opts.transactionStatus = this.props.t('Not Started')
|
opts.transactionStatus = this.props.t('notStarted')
|
||||||
} else if (transactionHash) {
|
} else if (transactionHash) {
|
||||||
opts.onClick = () => this.view(transactionHash, transactionNetworkId)
|
opts.onClick = () => this.view(transactionHash, transactionNetworkId)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user