Browse Source

Fixes after merge

all-modes
Ivana Trajanovska 8 years ago
parent
commit
c8ef1ace7a
  1. 4
      react/src/components/dashboard/walletsData/walletsData.js
  2. 3
      react/src/components/dashboard/walletsData/walletsData.render.js

4
react/src/components/dashboard/walletsData/walletsData.js

@ -55,9 +55,9 @@ class WalletsData extends React.Component {
itemsListColumns: this.generateItemsListColumns(),
pageSize: 20,
showPagination: false,
searchTerm: null
searchTerm: null,
coin: null,
txhistory: null,
txhistory: null
};
this.toggleBasiliskActionsMenu = this.toggleBasiliskActionsMenu.bind(this);

3
react/src/components/dashboard/walletsData/walletsData.render.js

@ -49,7 +49,8 @@ export const AddressRender = function(tx) {
export const AddressItemRender = function(address, type, amount, coin) {
return (
<li key={address}>
<li key={address}
className={ address === this.state.currentAddress ? 'selected' : '' }>
<a onClick={ () => this.updateAddressSelection(address) }>
<i className={ 'icon fa-eye' + (type === 'public' ? '' : '-slash') }></i>&nbsp;&nbsp;
<span className="text">[ { amount } { coin } ]{ address }</span>

Loading…
Cancel
Save