summaryrefslogtreecommitdiffstats
path: root/web/react/components/create_post.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/create_post.jsx')
-rw-r--r--web/react/components/create_post.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/web/react/components/create_post.jsx b/web/react/components/create_post.jsx
index 8af9c36b3..871b72a43 100644
--- a/web/react/components/create_post.jsx
+++ b/web/react/components/create_post.jsx
@@ -291,7 +291,8 @@ export default class CreatePost extends React.Component {
<FilePreview
files={this.state.previews}
onRemove={this.removePreview}
- uploadsInProgress={this.state.uploadsInProgress} />
+ uploadsInProgress={this.state.uploadsInProgress}
+ />
);
}
@@ -317,7 +318,8 @@ export default class CreatePost extends React.Component {
createMessage='Write a message...'
channelId={this.state.channelId}
id='post_textbox'
- ref='textbox' />
+ ref='textbox'
+ />
<FileUpload
ref='fileUpload'
getFileCount={this.getFileCount}
@@ -325,7 +327,8 @@ export default class CreatePost extends React.Component {
onFileUpload={this.handleFileUploadComplete}
onUploadError={this.handleUploadError}
postType='post'
- channelId='' />
+ channelId=''
+ />
</div>
<div className={postFooterClassName}>
{postError}