Skip to content

Commit

Permalink
Merge 62b8bce into b251043
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalp committed Oct 25, 2018
2 parents b251043 + 62b8bce commit e5a8957
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/threads/utils.js
Expand Up @@ -121,7 +121,7 @@ export function getModerationActions(threads) {
moderation.can_pin_globally = thread.acl.can_pin_globally;
}

if (thread.acl.can_unhide > moderation.can_unhide) {
if (thread.is_hidden && thread.acl.can_unhide > moderation.can_unhide) {
moderation.can_unhide = thread.acl.can_unhide;
}

Expand Down

0 comments on commit e5a8957

Please sign in to comment.