add help link for transaction types
This commit is contained in:
parent
a6946b4930
commit
d9f65aaff3
3 changed files with 9 additions and 1 deletions
|
@ -71,7 +71,7 @@ class TransactionListItem extends React.PureComponent {
|
|||
</div>
|
||||
</div>
|
||||
: <span className="empty">
|
||||
{__("(Transaction pending)")}
|
||||
{__("Pending")}
|
||||
</span>}
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
import React from "react";
|
||||
import TransactionListItem from "./internal/TransactionListItem";
|
||||
import FormField from "component/formField";
|
||||
import Link from "component/link";
|
||||
import * as icons from "constants/icons";
|
||||
import * as modals from "constants/modal_types";
|
||||
|
||||
class TransactionList extends React.PureComponent {
|
||||
|
@ -59,6 +61,11 @@ class TransactionList extends React.PureComponent {
|
|||
<option value="support">{__("Supports")}</option>
|
||||
<option value="update">{__("Updates")}</option>
|
||||
</FormField>
|
||||
{" "}
|
||||
<Link
|
||||
href="https://lbry.io/faq/transaction-types"
|
||||
icon={icons.HELP_CIRCLE}
|
||||
/>
|
||||
</span>}
|
||||
{!transactionList.length &&
|
||||
<div className="empty">
|
||||
|
|
|
@ -2,3 +2,4 @@ export const FEATURED = "rocket";
|
|||
export const LOCAL = "folder";
|
||||
export const FILE = "file";
|
||||
export const HISTORY = "history";
|
||||
export const HELP_CIRCLE = "question-circle";
|
||||
|
|
Loading…
Reference in a new issue