From 4df1ad2b28a660b1a0b96869701ffb0b9f0a6219 Mon Sep 17 00:00:00 2001 From: enahum Date: Tue, 6 Dec 2016 12:22:19 -0300 Subject: PLT-4859 Email notifications sent when email notifications set to never (#4711) --- webapp/components/create_comment.jsx | 2 +- webapp/components/user_settings/email_notification_setting.jsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/components/create_comment.jsx b/webapp/components/create_comment.jsx index 543aef202..a235691b4 100644 --- a/webapp/components/create_comment.jsx +++ b/webapp/components/create_comment.jsx @@ -490,5 +490,5 @@ export default class CreateComment extends React.Component { CreateComment.propTypes = { channelId: React.PropTypes.string.isRequired, rootId: React.PropTypes.string.isRequired, - latestPostId: React.PropTypes.string.isRequired + latestPostId: React.PropTypes.string }; diff --git a/webapp/components/user_settings/email_notification_setting.jsx b/webapp/components/user_settings/email_notification_setting.jsx index cc81c2faf..a8319de29 100644 --- a/webapp/components/user_settings/email_notification_setting.jsx +++ b/webapp/components/user_settings/email_notification_setting.jsx @@ -64,7 +64,7 @@ export default class EmailNotificationSetting extends React.Component { if (this.props.activeSection !== 'email') { let description; - if (this.props.enableEmail === 'true') { + if (this.props.enableEmail) { switch (this.state.emailInterval) { case INTERVAL_IMMEDIATE: description = ( @@ -119,7 +119,7 @@ export default class EmailNotificationSetting extends React.Component {