Skip to content

Commit

Permalink
PLT-6300 Fixed flag icons not appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
hmhealey committed Apr 11, 2017
1 parent c6ef33b commit 8bcb558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/components/post_view/components/post_info.jsx
Expand Up @@ -460,7 +460,7 @@ export default class PostInfo extends React.Component {
}

let flagTrigger;
if (isEphemeral) {
if (!isEphemeral) {
flagTrigger = (
<OverlayTrigger
key={'flagtooltipkey' + flagVisible}
Expand Down
2 changes: 1 addition & 1 deletion webapp/components/rhs_comment.jsx
Expand Up @@ -553,7 +553,7 @@ export default class RhsComment extends React.Component {
}

let flagTrigger;
if (isEphemeral) {
if (!isEphemeral) {
flagTrigger = (
<OverlayTrigger
key={'commentflagtooltipkey' + flagVisible}
Expand Down

0 comments on commit 8bcb558

Please sign in to comment.