Skip to content

Commit

Permalink
Show ticker next to Total Supply in token search result / vertical table
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaw3d committed Oct 2, 2023
1 parent bbb248c commit 056668c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Tokens/TokenDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const TokenDetails: FC<{
<dt>{t('tokens.totalSupply')}</dt>
<dd>
{token.total_supply
? t('tokens.totalSupplyValue', { value: token.total_supply })
? t('tokens.totalSupplyValue', { value: token.total_supply, ticker: token.symbol })
: t('common.missing')}
</dd>
</StyledDescriptionList>
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
"holdersCount": "Holders Count",
"holdersCount_short": "Holders",
"totalSupply": "Total Supply",
"totalSupplyValue": "{{ value, number }}",
"totalSupplyValue": "{{ value, number }} {{ticker}}",
"transfers": "Token Transfers",
"transferEventType": {
"transfer": "Transfer",
Expand Down

0 comments on commit 056668c

Please sign in to comment.