add transaction-list help link #4016

Merged
jessopb merged 1 commit from helpLinkTxo into master 2020-04-17 18:59:18 +02:00
2 changed files with 15 additions and 2 deletions
Showing only changes of commit 522ac4cfdc - Show all commits

View file

@ -1157,5 +1157,9 @@
"Default": "Default", "Default": "Default",
"Amount (LBC)": "Amount (LBC)", "Amount (LBC)": "Amount (LBC)",
"Successfully unlocked your tip!": "Successfully unlocked your tip!", "Successfully unlocked your tip!": "Successfully unlocked your tip!",
"Successfully abandoned your claim.": "Successfully abandoned your claim." "Successfully abandoned your claim.": "Successfully abandoned your claim.",
"You have %count% blocked %channels%.": "You have %count% blocked %channels%.",
"Account Password": "Account Password",
"You do not currently have a password set.": "You do not currently have a password set.",
"Add A Password": "Add A Password"
} }

View file

@ -3,6 +3,8 @@ import * as MODALS from 'constants/modal_types';
import React from 'react'; import React from 'react';
import TxoListItem from './internal/txo-list-item'; import TxoListItem from './internal/txo-list-item';
import Spinner from 'component/spinner'; import Spinner from 'component/spinner';
import HelpLink from 'component/common/help-link';
type Props = { type Props = {
emptyMessage: ?string, emptyMessage: ?string,
loading: boolean, loading: boolean,
@ -32,7 +34,14 @@ function TransactionListTable(props: Props) {
<thead> <thead>
<tr> <tr>
<th>{__('Date')}</th> <th>{__('Date')}</th>
<th>{__('Type')} </th> <th>
{
<>
{__('Type')}
<HelpLink href="https://lbry.com/faq/transaction-types" />
</>
}
</th>
<th>{__('Details')} </th> <th>{__('Details')} </th>
<th>{__('Transaction')}</th> <th>{__('Transaction')}</th>
<th className="table__item--align-right">{__('Amount (LBC)')}</th> <th className="table__item--align-right">{__('Amount (LBC)')}</th>