summaryrefslogtreecommitdiffstats
path: root/web/react/components/center_panel.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-02-22 10:54:42 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-02-22 10:54:42 -0500
commit32ae72d91d31699899d5e2084cf7faa40c81e42c (patch)
tree7e5e2f7ed7a1d2edca368ca91bd8416336a6cedf /web/react/components/center_panel.jsx
parent51680a7cd84661340cb727fea09b99d5350d9160 (diff)
parent4c92a1c1e35402730f74cf24a0c71729f4d0a676 (diff)
downloadchat-32ae72d91d31699899d5e2084cf7faa40c81e42c.tar.gz
chat-32ae72d91d31699899d5e2084cf7faa40c81e42c.tar.bz2
chat-32ae72d91d31699899d5e2084cf7faa40c81e42c.zip
Merge pull request #2208 from mattermost/client-upgrades
Updating some client deps + eslint
Diffstat (limited to 'web/react/components/center_panel.jsx')
-rw-r--r--web/react/components/center_panel.jsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/react/components/center_panel.jsx b/web/react/components/center_panel.jsx
index 7d2be04d6..6cb749075 100644
--- a/web/react/components/center_panel.jsx
+++ b/web/react/components/center_panel.jsx
@@ -55,10 +55,10 @@ export default class CenterPanel extends React.Component {
let postsContainer;
let createPost;
if (this.state.showTutorialScreens) {
- postsContainer = <TutorialIntroScreens />;
+ postsContainer = <TutorialIntroScreens/>;
createPost = null;
} else if (this.state.showPostFocus) {
- postsContainer = <PostFocusView />;
+ postsContainer = <PostFocusView/>;
handleClick = function clickHandler(e) {
e.preventDefault();
@@ -80,13 +80,13 @@ export default class CenterPanel extends React.Component {
</div>
);
} else {
- postsContainer = <PostsViewContainer />;
+ postsContainer = <PostsViewContainer/>;
createPost = (
<div
className='post-create__container'
id='post-create'
>
- <CreatePost />
+ <CreatePost/>
</div>
);
}
@@ -108,7 +108,7 @@ export default class CenterPanel extends React.Component {
className='app__content'
>
<div id='channel-header'>
- <ChannelHeader />
+ <ChannelHeader/>
</div>
{postsContainer}
{createPost}