fix label on tx table for supports

This commit is contained in:
Sean Yesmunt 2020-06-15 19:02:03 -04:00
parent ca988d38ae
commit f13cc3c51c

View file

@ -119,7 +119,8 @@ class TxoListItem extends React.PureComponent<Props, State> {
</td> </td>
<td className="table__item--actionable"> <td className="table__item--actionable">
<span> <span>
{(isTip && __(toCapitalCase('tip'))) || {(isTip && __('Tip')) ||
(type === 'support' && __('Support')) ||
(valueType && ((valueType === 'stream' && __('Publish')) || __(toCapitalCase(valueType)))) || (valueType && ((valueType === 'stream' && __('Publish')) || __(toCapitalCase(valueType)))) ||
(type && __(toCapitalCase(type)))} (type && __(toCapitalCase(type)))}
</span>{' '} </span>{' '}