MM-25809 - Fixed rendering code blocks when starting with 4 spaces (#4397)

This commit is contained in:
Maria A Nunez 2020-06-08 19:58:48 -04:00 committed by GitHub
parent 195011d678
commit 6899bb9510
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -141,7 +141,7 @@ export default class PostDraft extends PureComponent {
channel_id: channelId,
root_id: rootId,
parent_id: rootId,
message: value.trim(),
message: value,
};
createPost(post, postFiles);