summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-09-02 13:00:35 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-09-02 15:57:32 -0700
commit96aa78c9713580d087f877dcb95df2ec6d366cee (patch)
tree133d0b708e24dfdb085024ba142284f3d90f4384 /web/react/components/post_list.jsx
parent58ec3cb19aac1123a24c556a741e44327f910a89 (diff)
downloadchat-96aa78c9713580d087f877dcb95df2ec6d366cee.tar.gz
chat-96aa78c9713580d087f877dcb95df2ec6d366cee.tar.bz2
chat-96aa78c9713580d087f877dcb95df2ec6d366cee.zip
Fixed some react warnings involving missing keys in render arrays
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 67d21f67a..c5db3956d 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -518,7 +518,7 @@ export default class PostList extends React.Component {
var postCtl = (
<Post
- key={post.id}
+ key={post.id + 'postKey'}
ref={post.id}
sameUser={sameUser}
sameRoot={sameRoot}