diff --git a/src/components/tx/TxHistory/List/TxView.js b/src/components/tx/TxHistory/List/TxView.js index de4472c79..f6ad7f829 100644 --- a/src/components/tx/TxHistory/List/TxView.js +++ b/src/components/tx/TxHistory/List/TxView.js @@ -2,12 +2,10 @@ import React from 'react'; import PropTypes from 'prop-types'; import { TableRow, TableRowColumn } from 'material-ui/Table'; -import { IconButton } from 'material-ui'; import CircularProgress from 'material-ui/CircularProgress'; import muiThemeable from 'material-ui/styles/muiThemeable'; import { Account as AddressAvatar } from 'emerald-js-ui'; import { Forward as ArrowRightIcon } from 'emerald-js-ui/lib/icons3'; -import { Repeat as RepeatIcon } from 'emerald-js-ui/lib/icons'; import AccountBalance from '../../../accounts/Balance'; import TokenUnits from '../../../../lib/tokenUnits'; import { link, tables } from '../../../../lib/styles'; @@ -15,10 +13,6 @@ import classes from './list.scss'; import i18n from '../../../../i18n/i18n'; const styles = { - repeatIcon: { - width: '15px', - height: '15px', - }, tablePadding: { paddingTop: '15px', paddingBottom: '15px', @@ -27,7 +21,7 @@ const styles = { export const TxView = (props) => { - const { showFiat, tx, openTx, openAccount, refreshTx, toAccount, fromAccount, numConfirmations, currentBlockHeight, muiTheme } = props; + const { showFiat, tx, openTx, openAccount, toAccount, fromAccount, numConfirmations, currentBlockHeight, muiTheme } = props; const blockNumber = tx.get('blockNumber'); const confirmationBlockNumber = blockNumber + numConfirmations; const successColor = muiTheme.palette.primary1Color; @@ -78,7 +72,7 @@ export const TxView = (props) => { return ( - + {txValue && { onAddressClick={() => openAccount(tx.get('to'))} />} - - - - - ); }; @@ -126,7 +115,6 @@ TxView.propTypes = { toAccount: PropTypes.object.isRequired, fromAccount: PropTypes.object.isRequired, openTx: PropTypes.func.isRequired, - refreshTx: PropTypes.func.isRequired, currentBlockHeight: PropTypes.number.isRequired, numConfirmations: PropTypes.number.isRequired, }; diff --git a/src/components/tx/TxHistory/List/list.js b/src/components/tx/TxHistory/List/list.js index d16901dae..fb31af321 100644 --- a/src/components/tx/TxHistory/List/list.js +++ b/src/components/tx/TxHistory/List/list.js @@ -34,7 +34,7 @@ const TransactionsList = (props: Props) => { - + Amount @@ -43,7 +43,6 @@ const TransactionsList = (props: Props) => { From   To - diff --git a/src/components/tx/TxHistory/List/list.scss b/src/components/tx/TxHistory/List/list.scss index 155b21ab7..c669229e1 100644 --- a/src/components/tx/TxHistory/List/list.scss +++ b/src/components/tx/TxHistory/List/list.scss @@ -8,7 +8,7 @@ .amountColumn { padding-left: 0 !important; - width: 80px; + width: 100px; } .columnArrow {