summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_notifications.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-02 11:16:22 -0800
committerCorey Hulen <corey@hulen.com>2015-07-02 11:16:22 -0800
commita3db8e83f68f4341b473e77986dc7ca93f97c2d0 (patch)
treef2d5178c4555acd1f231bdf50d4fc25312d8a519 /web/react/components/channel_notifications.jsx
parente233d0d2d20bcb12540e39829a2bce754caa185c (diff)
parent97c112c42707f92279b8a85f1f0ad8517fa59f18 (diff)
downloadchat-a3db8e83f68f4341b473e77986dc7ca93f97c2d0.tar.gz
chat-a3db8e83f68f4341b473e77986dc7ca93f97c2d0.tar.bz2
chat-a3db8e83f68f4341b473e77986dc7ca93f97c2d0.zip
Merge pull request #123 from asaadmahmoodspin/mm-1426
MM-1426 - Updating UI
Diffstat (limited to 'web/react/components/channel_notifications.jsx')
-rw-r--r--web/react/components/channel_notifications.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/channel_notifications.jsx b/web/react/components/channel_notifications.jsx
index fa9ab42ae..638d16576 100644
--- a/web/react/components/channel_notifications.jsx
+++ b/web/react/components/channel_notifications.jsx
@@ -97,7 +97,7 @@ module.exports = React.createClass({
var inputs = [];
inputs.push(
- <div className="col-sm-12">
+ <div>
<div className="radio">
<label>
<input type="radio" checked={notifyActive[0]} onClick={function(){self.handleRadioClick("all")}}>For all activity</input>
@@ -158,7 +158,7 @@ module.exports = React.createClass({
var inputs = [];
inputs.push(
- <div className="col-sm-12">
+ <div>
<div className="btn-group" data-toggle="buttons-radio">
<button className={"btn btn-default "+quietActive[0]} onClick={function(){self.handleQuietToggle(true)}}>On</button>
<button className={"btn btn-default "+quietActive[1]} onClick={function(){self.handleQuietToggle(false)}}>Off</button>
@@ -167,7 +167,7 @@ module.exports = React.createClass({
);
inputs.push(
- <div className="col-sm-12">
+ <div>
<br/>
Enabling quiet mode will turn off desktop notifications and only mark the channel as unread if you have been mentioned.
</div>