summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_thread.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-12-21 16:41:05 -0500
committerChristopher Speller <crspeller@gmail.com>2016-12-21 16:41:05 -0500
commit25d40bc98c71f526c256076f0c21c04bbb4e99e7 (patch)
treea674c237a41598854e44bc7fef986f71229d69ba /webapp/components/rhs_thread.jsx
parentba6e370ca71abacaa30234cb164427d27c86df13 (diff)
downloadchat-25d40bc98c71f526c256076f0c21c04bbb4e99e7.tar.gz
chat-25d40bc98c71f526c256076f0c21c04bbb4e99e7.tar.bz2
chat-25d40bc98c71f526c256076f0c21c04bbb4e99e7.zip
PLT-4431 Add post queuing to the webapp (#4800)
* Add post queuing to the webapp * Add more abstraction
Diffstat (limited to 'webapp/components/rhs_thread.jsx')
-rw-r--r--webapp/components/rhs_thread.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/rhs_thread.jsx b/webapp/components/rhs_thread.jsx
index 658cba288..8fd49dd25 100644
--- a/webapp/components/rhs_thread.jsx
+++ b/webapp/components/rhs_thread.jsx
@@ -332,10 +332,12 @@ export default class RhsThread extends React.Component {
status = this.state.statuses[p.id] || 'offline';
}
+ const keyPrefix = comPost.id ? comPost.id : comPost.pending_post_id;
+
return (
<Comment
ref={comPost.id}
- key={comPost.id + 'commentKey'}
+ key={keyPrefix + 'commentKey'}
post={comPost}
user={p}
currentUser={this.props.currentUser}