Skip to content

Commit

Permalink
Merge pull request #4250 from cpradio/fix-unlisted-listed-icons
Browse files Browse the repository at this point in the history
FIX: Show eye-slash icon when able to mark a topic as Unlisted, and e…
  • Loading branch information
arpitjalan committed Jun 5, 2016
2 parents c6f5a52 + 4a0ac2c commit 80f6f7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default createWidget('topic-admin-menu', {
const visible = topic.get('visible');
buttons.push({ className: 'topic-admin-visible',
action: 'toggleVisibility',
icon: visible ? 'eye' : 'eye-slash',
icon: visible ? 'eye-slash' : 'eye',
label: visible ? 'actions.invisible' : 'actions.visible' });

if (this.currentUser.get('staff')) {
Expand Down

0 comments on commit 80f6f7a

Please sign in to comment.