Updated ProfileStatsPanel order

• Updated:
- ProfileStatsPanel order to have followers in front of following
This commit is contained in:
mgabdev 2020-05-18 17:49:35 -04:00
parent 79798bc766
commit 0ef63d3598

View File

@ -50,18 +50,18 @@ class ProfileStatsPanel extends ImmutablePureComponent {
to={`/${account.get('acct')}`} to={`/${account.get('acct')}`}
isCentered={noPanel} isCentered={noPanel}
/> />
<UserStat
title={intl.formatMessage(messages.follows)}
value={shortNumberFormat(account.get('following_count'))}
to={`/${account.get('acct')}/following`}
isCentered={noPanel}
/>
<UserStat <UserStat
title={intl.formatMessage(messages.followers)} title={intl.formatMessage(messages.followers)}
value={shortNumberFormat(account.get('followers_count'))} value={shortNumberFormat(account.get('followers_count'))}
to={`/${account.get('acct')}/followers`} to={`/${account.get('acct')}/followers`}
isCentered={noPanel} isCentered={noPanel}
/> />
<UserStat
title={intl.formatMessage(messages.follows)}
value={shortNumberFormat(account.get('following_count'))}
to={`/${account.get('acct')}/following`}
isCentered={noPanel}
/>
{ {
account.get('id') === me && account.get('id') === me &&
<UserStat <UserStat