Hashtag: fix conditional display of "x people talking"
This commit is contained in:
parent
497ca73ede
commit
f9b4a89ead
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ const Hashtag: React.FC<IHashtag> = ({ hashtag }) => {
|
||||||
<Text tag='span' size='sm' weight='semibold'>#{hashtag.name}</Text>
|
<Text tag='span' size='sm' weight='semibold'>#{hashtag.name}</Text>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{hashtag.history && (
|
{Boolean(count) && (
|
||||||
<Text theme='muted' size='sm'>
|
<Text theme='muted' size='sm'>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='trends.count_by_accounts'
|
id='trends.count_by_accounts'
|
||||||
|
|
Loading…
Reference in a new issue