mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 06:06:41 +01:00
Let's flip things around
This commit is contained in:
parent
4dbc26dbb6
commit
fd1fc9c5fc
1 changed files with 14 additions and 14 deletions
|
@ -316,6 +316,20 @@ function AccountInfo({
|
|||
</div>
|
||||
)}
|
||||
<p class="stats">
|
||||
<span>
|
||||
Followers
|
||||
<br />
|
||||
<b title={followersCount}>
|
||||
{shortenNumber(followersCount)}
|
||||
</b>{' '}
|
||||
</span>
|
||||
<span>
|
||||
Following
|
||||
<br />
|
||||
<b title={followingCount}>
|
||||
{shortenNumber(followingCount)}
|
||||
</b>{' '}
|
||||
</span>
|
||||
{standalone ? (
|
||||
<span>
|
||||
Posts
|
||||
|
@ -338,20 +352,6 @@ function AccountInfo({
|
|||
</b>{' '}
|
||||
</Link>
|
||||
)}
|
||||
<span>
|
||||
Following
|
||||
<br />
|
||||
<b title={followingCount}>
|
||||
{shortenNumber(followingCount)}
|
||||
</b>{' '}
|
||||
</span>
|
||||
<span>
|
||||
Followers
|
||||
<br />
|
||||
<b title={followersCount}>
|
||||
{shortenNumber(followersCount)}
|
||||
</b>{' '}
|
||||
</span>
|
||||
{!!createdAt && (
|
||||
<span>
|
||||
Joined
|
||||
|
|
Loading…
Reference in a new issue