summaryrefslogtreecommitdiffstats
path: root/web/react/pages/channel.jsx
diff options
context:
space:
mode:
authorTomi M <tomitm@gmail.com>2015-10-06 20:02:39 -0700
committerTomi M <tomitm@gmail.com>2015-10-06 20:31:23 -0700
commit5a28562354d56590ec87cf0a1e9358cd1a70854a (patch)
tree65906652d1f83694a5896bf3751350338e1663c8 /web/react/pages/channel.jsx
parentfe802fb9c4afdf27a2fb56eb472f48eb921b4de0 (diff)
downloadchat-5a28562354d56590ec87cf0a1e9358cd1a70854a.tar.gz
chat-5a28562354d56590ec87cf0a1e9358cd1a70854a.tar.bz2
chat-5a28562354d56590ec87cf0a1e9358cd1a70854a.zip
PLT-445 Create About dialog
Diffstat (limited to 'web/react/pages/channel.jsx')
-rw-r--r--web/react/pages/channel.jsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/react/pages/channel.jsx b/web/react/pages/channel.jsx
index c333fd57d..3eed91366 100644
--- a/web/react/pages/channel.jsx
+++ b/web/react/pages/channel.jsx
@@ -30,6 +30,7 @@ var ErrorStore = require('../stores/error_store.jsx');
var ChannelLoader = require('../components/channel_loader.jsx');
var MentionList = require('../components/mention_list.jsx');
var ChannelInfoModal = require('../components/channel_info_modal.jsx');
+var AboutBuildModal = require('../components/about_build_modal.jsx');
var AccessHistoryModal = require('../components/access_history_modal.jsx');
var ActivityLogModal = require('../components/activity_log_modal.jsx');
var RemovedFromChannelModal = require('../components/removed_from_channel_modal.jsx');
@@ -151,6 +152,11 @@ function setupChannelPage(props) {
);
React.render(
+ <AboutBuildModal />,
+ document.getElementById('about_build_modal')
+ );
+
+ React.render(
<MoreChannelsModal />,
document.getElementById('more_channels_modal')
);