Этот коммит содержится в:
Florian Orben
2015-11-05 23:57:01 +01:00
родитель e00836f8df
Коммит 4dedb14467
2 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@@ -109,7 +109,6 @@ export default class CreateComment extends React.Component {
post.pending_post_id = `${userId}:${time}`;
post.user_id = userId;
post.create_at = time;
post.attachments = [];
PostStore.storePendingPost(post);
PostStore.storeCommentDraft(this.props.rootId, null);

Просмотреть файл

@@ -173,7 +173,6 @@ export default class CreatePost extends React.Component {
post.create_at = time;
post.root_id = this.state.rootId;
post.parent_id = this.state.parentId;
post.attachments = [];
const channel = ChannelStore.get(this.state.channelId);