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 { Icon } from "component/common.js";
|
||||
import Icon from "component/icon";
|
||||
|
||||
const Link = props => {
|
||||
const {
|
||||
|
|
|
@ -2,6 +2,7 @@ import React from "react";
|
|||
import { BusyMessage } from "component/common";
|
||||
import Link from "component/link";
|
||||
import TransactionList from "component/transactionList";
|
||||
import * as icons from "constants/icons";
|
||||
|
||||
class TransactionListRecent extends React.PureComponent {
|
||||
componentWillMount() {
|
||||
|
@ -29,7 +30,9 @@ class TransactionListRecent extends React.PureComponent {
|
|||
<div className="card__actions card__actions--bottom">
|
||||
<Link
|
||||
navigate="/history"
|
||||
label={__("See Full History")}
|
||||
label={__("Full History")}
|
||||
icon={icons.HISTORY}
|
||||
className="no-underline"
|
||||
button="text"
|
||||
/>
|
||||
</div>}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
export const FEATURED = "rocket";
|
||||
export const LOCAL = "folder";
|
||||
export const FILE = "file";
|
||||
export const HISTORY = "history";
|
||||
|
|
Loading…
Add table
Reference in a new issue