summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-02 16:04:12 -0700
committerCorey Hulen <corey@hulen.com>2015-09-02 16:04:12 -0700
commit83788409a2fd5fdcbf9f55e86a73cf83cd9e1763 (patch)
tree133d0b708e24dfdb085024ba142284f3d90f4384 /web/react/components/post_list.jsx
parent58ec3cb19aac1123a24c556a741e44327f910a89 (diff)
parent96aa78c9713580d087f877dcb95df2ec6d366cee (diff)
downloadchat-83788409a2fd5fdcbf9f55e86a73cf83cd9e1763.tar.gz
chat-83788409a2fd5fdcbf9f55e86a73cf83cd9e1763.tar.bz2
chat-83788409a2fd5fdcbf9f55e86a73cf83cd9e1763.zip
Merge pull request #569 from rgarmsen2295/fix-react-key-warnings
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}