Merge pull request #1277 from rgarmsen2295/plt-550-refactor-fix
Brings back deleted parent fix lost in center post list refactor
Этот коммит содержится в:
@@ -4,6 +4,7 @@
|
|||||||
const UserStore = require('../stores/user_store.jsx');
|
const UserStore = require('../stores/user_store.jsx');
|
||||||
const Utils = require('../utils/utils.jsx');
|
const Utils = require('../utils/utils.jsx');
|
||||||
const Post = require('./post.jsx');
|
const Post = require('./post.jsx');
|
||||||
|
const Constants = require('../utils/constants.jsx');
|
||||||
|
|
||||||
export default class PostsView extends React.Component {
|
export default class PostsView extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@@ -69,6 +70,11 @@ export default class PostsView extends React.Component {
|
|||||||
const parentPost = posts[post.parent_id];
|
const parentPost = posts[post.parent_id];
|
||||||
const prevPost = posts[order[i + 1]];
|
const prevPost = posts[order[i + 1]];
|
||||||
|
|
||||||
|
// If the post is a comment whose parent has been deleted, don't add it to the list.
|
||||||
|
if (parentPost && parentPost.state === Constants.POST_DELETED) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
let sameUser = false;
|
let sameUser = false;
|
||||||
let sameRoot = false;
|
let sameRoot = false;
|
||||||
let hideProfilePic = false;
|
let hideProfilePic = false;
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user