mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 15:31:27 +00:00
fix recent transaction actions
This commit is contained in:
parent
bccdcb1315
commit
9a8799eae0
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { Icon } from "component/common.js";
|
import Icon from "component/icon";
|
||||||
|
|
||||||
const Link = props => {
|
const Link = props => {
|
||||||
const {
|
const {
|
||||||
|
|
|
@ -2,6 +2,7 @@ import React from "react";
|
||||||
import { BusyMessage } from "component/common";
|
import { BusyMessage } from "component/common";
|
||||||
import Link from "component/link";
|
import Link from "component/link";
|
||||||
import TransactionList from "component/transactionList";
|
import TransactionList from "component/transactionList";
|
||||||
|
import * as icons from "constants/icons";
|
||||||
|
|
||||||
class TransactionListRecent extends React.PureComponent {
|
class TransactionListRecent extends React.PureComponent {
|
||||||
componentWillMount() {
|
componentWillMount() {
|
||||||
|
@ -29,7 +30,9 @@ class TransactionListRecent extends React.PureComponent {
|
||||||
<div className="card__actions card__actions--bottom">
|
<div className="card__actions card__actions--bottom">
|
||||||
<Link
|
<Link
|
||||||
navigate="/history"
|
navigate="/history"
|
||||||
label={__("See Full History")}
|
label={__("Full History")}
|
||||||
|
icon={icons.HISTORY}
|
||||||
|
className="no-underline"
|
||||||
button="text"
|
button="text"
|
||||||
/>
|
/>
|
||||||
</div>}
|
</div>}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
export const FEATURED = "rocket";
|
export const FEATURED = "rocket";
|
||||||
export const LOCAL = "folder";
|
export const LOCAL = "folder";
|
||||||
export const FILE = "file";
|
export const FILE = "file";
|
||||||
|
export const HISTORY = "history";
|
||||||
|
|
Loading…
Add table
Reference in a new issue