summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings/user_settings_notifications.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-09-22 12:00:34 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-30 09:59:58 -0400
commit4bc625e8d10ab7735b76814fe9bbf3fb9144d4e1 (patch)
tree3ecdfa0f4aaa11ba0338657c95000140cc0e05b8 /web/react/components/user_settings/user_settings_notifications.jsx
parent8a5ab6a56fcf428bded859c2325d7ef998fa116b (diff)
downloadchat-4bc625e8d10ab7735b76814fe9bbf3fb9144d4e1.tar.gz
chat-4bc625e8d10ab7735b76814fe9bbf3fb9144d4e1.tar.bz2
chat-4bc625e8d10ab7735b76814fe9bbf3fb9144d4e1.zip
Added 'default' option to channel notification settings that just uses the user's notification level
Diffstat (limited to 'web/react/components/user_settings/user_settings_notifications.jsx')
-rw-r--r--web/react/components/user_settings/user_settings_notifications.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/user_settings/user_settings_notifications.jsx b/web/react/components/user_settings/user_settings_notifications.jsx
index 42c65ef5d..e83f18aab 100644
--- a/web/react/components/user_settings/user_settings_notifications.jsx
+++ b/web/react/components/user_settings/user_settings_notifications.jsx
@@ -17,7 +17,7 @@ function getNotificationsStateFromStores() {
if (user.notify_props && user.notify_props.desktop_sound) {
sound = user.notify_props.desktop_sound;
}
- var desktop = 'all';
+ var desktop = 'default';
if (user.notify_props && user.notify_props.desktop) {
desktop = user.notify_props.desktop;
}