FIX: Don't show the email from the suspension on the user profile

This commit is contained in:
Robin Ward 2017-12-07 13:26:41 -05:00
parent 4ae1bbaeba
commit aeebcef7e2
2 changed files with 3 additions and 3 deletions

View File

@ -342,7 +342,7 @@
</div> </div>
<div class='controls'> <div class='controls'>
<b>{{i18n 'admin.user.suspend_reason'}}</b>: <b>{{i18n 'admin.user.suspend_reason'}}</b>:
<div class='full-suspend-reason'>{{model.full_suspend_reason}}</div> <div class='full-reason'>{{model.full_suspend_reason}}</div>
</div> </div>
</div> </div>
{{/if}} {{/if}}
@ -387,7 +387,7 @@
</div> </div>
<div class='controls'> <div class='controls'>
<b>{{i18n 'admin.user.silence_reason'}}</b>: <b>{{i18n 'admin.user.silence_reason'}}</b>:
{{model.silence_reason}} <div class='full-reason'>{{model.silence_reason}}</div>
</div> </div>
</div> </div>
{{/if}} {{/if}}

View File

@ -177,7 +177,7 @@ $mobile-breakpoint: 700px;
} }
} }
.full-suspend-reason { .full-reason {
white-space: pre-wrap; white-space: pre-wrap;
} }