Merge pull request #4016 from lbryio/helpLinkTxo

add transaction-list help link
This commit is contained in:
jessopb 2020-04-17 12:59:17 -04:00 committed by GitHub
commit bf86af2022
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 2 deletions

View file

@ -1157,5 +1157,9 @@
"Default": "Default",
"Amount (LBC)": "Amount (LBC)",
"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 TxoListItem from './internal/txo-list-item';
import Spinner from 'component/spinner';
import HelpLink from 'component/common/help-link';
type Props = {
emptyMessage: ?string,
loading: boolean,
@ -32,7 +34,14 @@ function TransactionListTable(props: Props) {
<thead>
<tr>
<th>{__('Date')}</th>
<th>{__('Type')} </th>
<th>
{
<>
{__('Type')}
<HelpLink href="https://lbry.com/faq/transaction-types" />
</>
}
</th>
<th>{__('Details')} </th>
<th>{__('Transaction')}</th>
<th className="table__item--align-right">{__('Amount (LBC)')}</th>