summaryrefslogtreecommitdiffstats
path: root/web/react/pages/channel.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-03 13:37:25 -0700
committerCorey Hulen <corey@hulen.com>2015-09-03 13:37:25 -0700
commit4f0c06114b61c92d982baac1c54ed80da93a9cc9 (patch)
treefa949f1269931b4d62bddda23e26a5dcdff9ac14 /web/react/pages/channel.jsx
parentb3fea25eddc332e9529692733093291b10d4aeef (diff)
parent570327463ca06c23b5b54b9ec93152535836f2c0 (diff)
downloadchat-4f0c06114b61c92d982baac1c54ed80da93a9cc9.tar.gz
chat-4f0c06114b61c92d982baac1c54ed80da93a9cc9.tar.bz2
chat-4f0c06114b61c92d982baac1c54ed80da93a9cc9.zip
Merge pull request #591 from mattermost/mm-1909
MM-1909 Upgrading ESLint, turning on new rules, enabling some warnings, optimizations
Diffstat (limited to 'web/react/pages/channel.jsx')
-rw-r--r--web/react/pages/channel.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/web/react/pages/channel.jsx b/web/react/pages/channel.jsx
index d56b309fa..71a03cde0 100644
--- a/web/react/pages/channel.jsx
+++ b/web/react/pages/channel.jsx
@@ -73,7 +73,8 @@ function setupChannelPage(teamName, teamType, teamId, channelName, channelId) {
React.render(
<Sidebar
teamDisplayName={teamName}
- teamType={teamType} />,
+ teamType={teamType}
+ />,
document.getElementById('sidebar-left')
);
@@ -190,7 +191,8 @@ function setupChannelPage(teamName, teamType, teamId, channelName, channelId) {
React.render(
<SidebarRightMenu
teamDisplayName={teamName}
- teamType={teamType} />,
+ teamType={teamType}
+ />,
document.getElementById('sidebar-menu')
);
@@ -226,7 +228,8 @@ function setupChannelPage(teamName, teamType, teamId, channelName, channelId) {
React.render(
<FileUploadOverlay
- overlayType='center' />,
+ overlayType='center'
+ />,
document.getElementById('file_upload_overlay')
);
}