summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_right.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/post_right.jsx')
-rw-r--r--web/react/components/post_right.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/react/components/post_right.jsx b/web/react/components/post_right.jsx
index 10a9400f5..19e4cf67a 100644
--- a/web/react/components/post_right.jsx
+++ b/web/react/components/post_right.jsx
@@ -286,8 +286,9 @@ module.exports = React.createClass({
}
var rootPostKey = root_post.id
- if (root_post.lastEditDate != undefined)
+ if (root_post.lastEditDate) {
rootPostKey += root_post.lastEditDate;
+ }
var posts_array = [];
@@ -295,8 +296,9 @@ module.exports = React.createClass({
var cpost = post_list.posts[postId];
if (cpost.root_id == root_post.id) {
var cpostKey = cpost.id
- if (cpost.lastEditDate != undefined)
+ if (cpost.lastEditDate) {
cpostKey += cpost.lastEditDate;
+ }
cpost.cpostKey = cpostKey;
posts_array.push(cpost);