mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-27 18:13:12 -05:00
[Glitch] Fix account.jsx imports (#25541)
Port remaining part of e0d230fb37848efd788eea54a83869a63ff0fb39, 20e85c0e837ef17219a1c317d7962286c9b4237d and 9d45a444f90ca6b939eecb52167fc7f39765c438 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
17372a3ec0
commit
dc917cfcdf
@ -7,16 +7,15 @@ import classNames from 'classnames';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { counterRenderer } from 'flavours/glitch/components/common_counter';
|
||||
|
||||
import { EmptyAccount } from 'flavours/glitch/components/empty_account';
|
||||
import ShortNumber from 'flavours/glitch/components/short_number';
|
||||
import { ShortNumber } from 'flavours/glitch/components/short_number';
|
||||
import { VerifiedBadge } from 'flavours/glitch/components/verified_badge';
|
||||
|
||||
import { me } from '../initial_state';
|
||||
|
||||
import { Avatar } from './avatar';
|
||||
import Button from './button';
|
||||
import { Button } from './button';
|
||||
import { FollowersCounter } from './counters';
|
||||
import { DisplayName } from './display_name';
|
||||
import { IconButton } from './icon_button';
|
||||
import Permalink from './permalink';
|
||||
@ -161,7 +160,7 @@ class Account extends ImmutablePureComponent {
|
||||
<DisplayName account={account} />
|
||||
{!minimal && (
|
||||
<div className='account__details'>
|
||||
<ShortNumber value={account.get('followers_count')} renderer={counterRenderer('followers')} /> {verification} {muteTimeRemaining}
|
||||
<ShortNumber value={account.get('followers_count')} renderer={FollowersCounter} /> {verification} {muteTimeRemaining}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user