summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings/user_settings_notifications.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-11-23 12:14:50 -0800
committer=Corey Hulen <corey@hulen.com>2015-11-23 12:14:50 -0800
commitba0cbe723be7adcfa7b5a43e50b3932f8c7a929f (patch)
tree5b641b0746daead7852ae9a0daf373f4a623efff /web/react/components/user_settings/user_settings_notifications.jsx
parent6ab7df3335d414ecf864972c817e3b37b3b01abf (diff)
downloadchat-ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f.tar.gz
chat-ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f.tar.bz2
chat-ba0cbe723be7adcfa7b5a43e50b3932f8c7a929f.zip
Disabling the all mention
Diffstat (limited to 'web/react/components/user_settings/user_settings_notifications.jsx')
-rw-r--r--web/react/components/user_settings/user_settings_notifications.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/react/components/user_settings/user_settings_notifications.jsx b/web/react/components/user_settings/user_settings_notifications.jsx
index e36aed395..bba69a7d4 100644
--- a/web/react/components/user_settings/user_settings_notifications.jsx
+++ b/web/react/components/user_settings/user_settings_notifications.jsx
@@ -512,7 +512,7 @@ export default class NotificationsTab extends React.Component {
}.bind(this);
inputs.push(
<div key='userNotificationAllOption'>
- <div className='checkbox'>
+ <div className='checkbox hidden'>
<label>
<input
type='checkbox'
@@ -590,9 +590,9 @@ export default class NotificationsTab extends React.Component {
if (this.state.mentionKey) {
keys.push('@' + user.username);
}
- if (this.state.allKey) {
- keys.push('@all');
- }
+ // if (this.state.allKey) {
+ // keys.push('@all');
+ // }
if (this.state.channelKey) {
keys.push('@channel');
}