Merge pull request #4015 from lbryio/fix-moreTxoListStatusHiding

modify status hiding in txolist
This commit is contained in:
jessopb 2020-04-17 12:53:08 -04:00 committed by GitHub
commit deb5ccab85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,9 +44,7 @@ function TxoList(props: Props) {
};
const hideStatus =
type === TXO.SENT ||
(currentUrlParams.type === TXO.RECEIVED &&
(currentUrlParams.subtype === TXO.PAYMENT || currentUrlParams.subtype === TXO.PURCHASE));
type === TXO.SENT || (currentUrlParams.type === TXO.RECEIVED && currentUrlParams.subtype !== TXO.TIP);
const params = {};
if (currentUrlParams.type) {