From 3aa32c3170583df25a6ff1f6d0fdf15d84f4e95a Mon Sep 17 00:00:00 2001 From: Maja Komel Date: Tue, 26 Mar 2019 12:04:33 +0100 Subject: [PATCH] FIX: send only one post request when changing topic notification level (#7254) --- .../select-kit/components/topic-notifications-options.js.es6 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/select-kit/components/topic-notifications-options.js.es6 b/app/assets/javascripts/select-kit/components/topic-notifications-options.js.es6 index b15b688faa9..5e04fe0771a 100644 --- a/app/assets/javascripts/select-kit/components/topic-notifications-options.js.es6 +++ b/app/assets/javascripts/select-kit/components/topic-notifications-options.js.es6 @@ -37,5 +37,7 @@ export default NotificationOptionsComponent.extend({ if (value !== this.get("value")) { this.get("topic.details").updateNotifications(value); } - } + }, + + deselect() {} });