mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 12:41:37 +01:00
Make explicit in glitch-soc's WebUI when an account is suspended
This commit is contained in:
parent
e3f822ac1b
commit
ccfc2b6dce
1 changed files with 13 additions and 0 deletions
|
@ -26,6 +26,19 @@ class ActionBar extends React.PureComponent {
|
|||
render () {
|
||||
const { account, intl } = this.props;
|
||||
|
||||
if (account.get('suspended')) {
|
||||
return (
|
||||
<div>
|
||||
<div className='account__disclaimer'>
|
||||
<Icon id='info-circle' fixedWidth /> <FormattedMessage
|
||||
id='account.suspended_disclaimer_full'
|
||||
defaultMessage="This user has been suspended by a moderator."
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
let extraInfo = '';
|
||||
|
||||
if (account.get('acct') !== account.get('username')) {
|
||||
|
|
Loading…
Reference in a new issue