summaryrefslogtreecommitdiffstats
path: root/web/react/pages/channel.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-22 08:31:10 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-22 08:47:00 -0500
commit4c92a1c1e35402730f74cf24a0c71729f4d0a676 (patch)
treea614a1bd7c10414182696e794a9e8dfc119e280e /web/react/pages/channel.jsx
parent040bff2b9f384b88179f6ec1beb40d92102c9ba3 (diff)
downloadchat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.tar.gz
chat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.tar.bz2
chat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.zip
Updating some client deps + eslint
Diffstat (limited to 'web/react/pages/channel.jsx')
-rw-r--r--web/react/pages/channel.jsx25
1 files changed, 12 insertions, 13 deletions
diff --git a/web/react/pages/channel.jsx b/web/react/pages/channel.jsx
index bd7c7c69b..61fa91cf8 100644
--- a/web/react/pages/channel.jsx
+++ b/web/react/pages/channel.jsx
@@ -68,18 +68,17 @@ class Root extends React.Component {
<ChannelLoader/>
<ErrorBar/>
<ChannelView/>
-
- <GetPostLinkModal />
- <GetTeamInviteLinkModal />
- <InviteMemberModal />
- <ImportThemeModal />
- <TeamSettingsModal />
- <RenameChannelModal />
- <MoreChannelsModal />
- <EditPostModal />
- <DeletePostModal />
- <RemovedFromChannelModal />
- <RegisterAppModal />
+ <GetPostLinkModal/>
+ <GetTeamInviteLinkModal/>
+ <InviteMemberModal/>
+ <ImportThemeModal/>
+ <TeamSettingsModal/>
+ <RenameChannelModal/>
+ <MoreChannelsModal/>
+ <EditPostModal/>
+ <DeletePostModal/>
+ <RemovedFromChannelModal/>
+ <RegisterAppModal/>
</div>
</IntlProvider>
);
@@ -94,7 +93,7 @@ global.window.setup_channel_page = function setup(props, team, channel) {
}
ReactDOM.render(
- <Root map={props} />,
+ <Root map={props}/>,
document.getElementById('channel_view')
);
};