mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-03 02:35:12 +00:00
fix label on tx table for supports
This commit is contained in:
parent
ca988d38ae
commit
f13cc3c51c
1 changed files with 2 additions and 1 deletions
|
@ -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>{' '}
|
||||||
|
|
Loading…
Add table
Reference in a new issue