Add needed iterator in tx-list and path to account in selectors.

feature/default_network_editable
Dan 7 years ago committed by Chi Kei Chan
parent d206f183f5
commit 45dbd017e6
  1. 7
      ui/app/components/tx-list.js
  2. 2
      ui/app/selectors.js

@ -50,7 +50,11 @@ TxList.prototype.renderTransaction = function () {
const { txsToRender, conversionRate } = this.props
return txsToRender.length
? txsToRender.map((transaction, i) => this.renderTransactionListItem(transaction, conversionRate))
: [h('div.tx-list-item.tx-list-item--empty', [ 'No Transactions' ])]
: [h(
'div.tx-list-item.tx-list-item--empty',
{ key: 'tx-list-none' },
[ 'No Transactions' ],
)]
}
// TODO: Consider moving TxListItem into a separate component
@ -88,6 +92,7 @@ TxList.prototype.renderTransactionListItem = function (transaction, conversionRa
txParams: transaction.txParams,
transactionStatus,
transActionId,
key: transActionId,
dateString,
address,
transactionAmount,

@ -13,7 +13,7 @@ module.exports = selectors
function getSelectedAddress (state) {
// TODO: accounts is not defined. Is it needed?
const selectedAddress = state.metamask.selectedAddress || Object.keys(accounts)[0]
const selectedAddress = state.metamask.selectedAddress || Object.keys(state.metamask.accounts)[0]
return selectedAddress
}

Loading…
Cancel
Save