summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_body.jsx
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-06-29 17:19:00 -0700
committernickago <ngonella@calpoly.edu>2015-06-29 17:19:00 -0700
commit351068491e506eb228335fa100d1aa0416ae132f (patch)
tree6ef21a20ee23d50084c1a27c3299ab111216949b /web/react/components/post_body.jsx
parent6df00cadb5fc6f3d1780cdac9f11c11ed0841a01 (diff)
downloadchat-351068491e506eb228335fa100d1aa0416ae132f.tar.gz
chat-351068491e506eb228335fa100d1aa0416ae132f.tar.bz2
chat-351068491e506eb228335fa100d1aa0416ae132f.zip
Changed the style of key-assignment to allow for more assured variance
Diffstat (limited to 'web/react/components/post_body.jsx')
-rw-r--r--web/react/components/post_body.jsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/react/components/post_body.jsx b/web/react/components/post_body.jsx
index 0fffec021..7d5ef4d33 100644
--- a/web/react/components/post_body.jsx
+++ b/web/react/components/post_body.jsx
@@ -89,7 +89,6 @@ module.exports = React.createClass({
var fileInfo = utils.splitFileLocation(filenames[i]);
if (Object.keys(fileInfo).length === 0) continue;
-
var type = utils.getFileType(fileInfo.ext);
if (type === "image") {
@@ -103,7 +102,7 @@ module.exports = React.createClass({
images.push(filenames[i]);
} else if (i < Constants.MAX_DISPLAY_FILES) {
postFiles.push(
- <div className="post-image__column custom-file" key={fileInfo.name+fileInfo.ext}>
+ <div className="post-image__column custom-file" key={fileInfo.name+i}>
<a href={fileInfo.path+"."+fileInfo.ext} download={fileInfo.name+"."+fileInfo.ext}>
<div className={"file-icon "+utils.getIconClassName(type)}/>
</a>