summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_thread
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-08-01 09:04:28 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2017-08-01 09:04:28 -0400
commit4ef844298fdb0d6fb41eac760f8ac00cee82b3bc (patch)
tree80fbe9c2ab194408ed1417910d1e13fac325569a /webapp/components/rhs_thread
parent0331409488083a58d66fdf58eb22cbaa924237f6 (diff)
downloadchat-4ef844298fdb0d6fb41eac760f8ac00cee82b3bc.tar.gz
chat-4ef844298fdb0d6fb41eac760f8ac00cee82b3bc.tar.bz2
chat-4ef844298fdb0d6fb41eac760f8ac00cee82b3bc.zip
Show flagged posts consistently throughout the UI (#7063)
Diffstat (limited to 'webapp/components/rhs_thread')
-rw-r--r--webapp/components/rhs_thread/rhs_thread.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/rhs_thread/rhs_thread.jsx b/webapp/components/rhs_thread/rhs_thread.jsx
index 58325e8cc..73e426207 100644
--- a/webapp/components/rhs_thread/rhs_thread.jsx
+++ b/webapp/components/rhs_thread/rhs_thread.jsx
@@ -343,7 +343,7 @@ export default class RhsThread extends React.Component {
let isRootFlagged = false;
if (this.state.flaggedPosts) {
- isRootFlagged = this.state.flaggedPosts.get(selected.id) === 'true';
+ isRootFlagged = this.state.flaggedPosts.get(selected.id) != null;
}
let rootStatus = 'offline';
@@ -367,7 +367,7 @@ export default class RhsThread extends React.Component {
let isFlagged = false;
if (this.state.flaggedPosts) {
- isFlagged = this.state.flaggedPosts.get(comPost.id) === 'true';
+ isFlagged = this.state.flaggedPosts.get(comPost.id) != null;
}
let status = 'offline';