diff --git a/ui/component/transactionListTable/view.jsx b/ui/component/transactionListTable/view.jsx index 8ffa7bb00..fea82778c 100644 --- a/ui/component/transactionListTable/view.jsx +++ b/ui/component/transactionListTable/view.jsx @@ -3,7 +3,6 @@ import * as MODALS from 'constants/modal_types'; import React from 'react'; import TxoListItem from './internal/txo-list-item'; import Spinner from 'component/spinner'; -import HelpLink from 'component/common/help-link'; type Props = { emptyMessage: ?string, @@ -34,14 +33,7 @@ function TransactionListTable(props: Props) { {__('Date')} - - { - <> - {__('Type')} - - - } - + {<>{__('Type')}} {__('Details')} {__('Transaction')} {__('Amount (LBC)')} diff --git a/ui/component/txoList/view.jsx b/ui/component/txoList/view.jsx index 61fbcc1a0..4d1df1ac3 100644 --- a/ui/component/txoList/view.jsx +++ b/ui/component/txoList/view.jsx @@ -9,6 +9,7 @@ import Button from 'component/button'; import Card from 'component/common/card'; import { toCapitalCase } from 'util/string'; import classnames from 'classnames'; +import HelpLink from 'component/common/help-link'; type Props = { search: string, @@ -186,7 +187,12 @@ function TxoList(props: Props) { + {__('Type')} + + + } value={type || 'all'} onChange={e => handleChange({ dkey: TXO.TYPE, value: e.target.value })} >