diff --git a/ui/component/transactionListTable/internal/txo-list-item.jsx b/ui/component/transactionListTable/internal/txo-list-item.jsx index cb5941ba5..948043c79 100644 --- a/ui/component/transactionListTable/internal/txo-list-item.jsx +++ b/ui/component/transactionListTable/internal/txo-list-item.jsx @@ -30,10 +30,10 @@ class TxoListItem extends React.PureComponent { (this: any).getLink = this.getLink.bind(this); } - getLink(type: string, tip: boolean) { + getLink(type: string, tip: boolean, valueType: string) { const { abandonState } = this.state; - if (type === 'claim') { + if (type === 'claim' && valueType !== 'repost') { return null; } @@ -130,7 +130,7 @@ class TxoListItem extends React.PureComponent { (valueType && ((valueType === 'stream' && __('Upload')) || __(toCapitalCase(valueType)))) || (type && __(toCapitalCase(type)))} {' '} - {isRevokeable && this.getLink(type, isTip)} + {isRevokeable && this.getLink(type, isTip, valueType)} {forClaim &&