add transaction-list help link #4016
2 changed files with 15 additions and 2 deletions
|
@ -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"
|
||||||
}
|
}
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue