summaryrefslogtreecommitdiffstats
path: root/web/react/pages/channel.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-03 10:49:36 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-03 15:00:47 -0400
commit4b22c1f99cb05be5ca187f2fd70ee2664c34de57 (patch)
treebfbaa7c5c849b6656eb8ea1267ce36028b0670b2 /web/react/pages/channel.jsx
parente69e2db6b4724517a39c57e3689dec82608581ee (diff)
downloadchat-4b22c1f99cb05be5ca187f2fd70ee2664c34de57.tar.gz
chat-4b22c1f99cb05be5ca187f2fd70ee2664c34de57.tar.bz2
chat-4b22c1f99cb05be5ca187f2fd70ee2664c34de57.zip
Upgrading ESLint and adding some more rules. Refactoring to meet these new rules
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')
);
}