mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
Don't show user_deleted as red after all
This commit is contained in:
parent
f887363e83
commit
ef1ff113a3
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ export default createWidget('post', {
|
|||
if (attrs.selected) { classNames.push('selected'); }
|
||||
if (attrs.topicOwner) { classNames.push('topic-owner'); }
|
||||
if (attrs.hidden) { classNames.push('post-hidden'); }
|
||||
if (attrs.deleted || attrs.user_deleted) { classNames.push('deleted'); }
|
||||
if (attrs.deleted) { classNames.push('deleted'); }
|
||||
if (attrs.primary_group_name) { classNames.push(`group-${attrs.primary_group_name}`); }
|
||||
if (attrs.wiki) { classNames.push(`wiki`); }
|
||||
if (attrs.isWhisper) { classNames.push('whisper'); }
|
||||
|
|
Loading…
Reference in a new issue