fix recent transaction actions

This commit is contained in:
btzr-io 2017-10-14 19:42:47 -06:00
parent bccdcb1315
commit 9a8799eae0
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import React from "react";
import { Icon } from "component/common.js";
import Icon from "component/icon";
const Link = props => {
const {

View file

@ -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>}

View file

@ -1,3 +1,4 @@
export const FEATURED = "rocket";
export const LOCAL = "folder";
export const FILE = "file";
export const HISTORY = "history";