From 537ca0fdf5259610ccf35ab742d25b62ed8b4c81 Mon Sep 17 00:00:00 2001 From: jessop Date: Fri, 17 Apr 2020 12:06:49 -0400 Subject: [PATCH] modify status hiding in txolist --- ui/component/txoList/view.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/component/txoList/view.jsx b/ui/component/txoList/view.jsx index 2b637c1c3..61fbcc1a0 100644 --- a/ui/component/txoList/view.jsx +++ b/ui/component/txoList/view.jsx @@ -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) {