1
0
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:
Dan 2018-03-22 00:54:44 -02:30
parent 3d3bd0eaf0
commit ca5bce477e
2 changed files with 3 additions and 5 deletions

View File

@ -59,11 +59,9 @@ class SenderToRecipient extends Component {
SenderToRecipient.propTypes = {
senderName: PropTypes.string,
senderAddress: PropTypes.string,
recipientName: PropTypes.string,
recipientName: PropTypes.string,
recipientAddress: PropTypes.string,
t: PropTypes.func,
}
module.exports = {
AccountDropdowns: connect()(SenderToRecipient),
}
module.exports = connect()(SenderToRecipient)

View File

@ -110,7 +110,7 @@ TxList.prototype.renderTransactionListItem = function (transaction, conversionRa
if (isUnapproved) {
opts.onClick = () => showConfTxPage({ id: transactionId })
opts.transactionStatus = this.props.t('Not Started')
opts.transactionStatus = this.props.t('notStarted')
} else if (transactionHash) {
opts.onClick = () => this.view(transactionHash, transactionNetworkId)
}