From cc65ed103c85112bfe6b3bfda2bbca50d0753821 Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Tue, 14 Sep 2021 18:18:18 +0530 Subject: [PATCH] settings: Use correct object in notification settings template. In commit 40f4316, we changed the code to pass user settings with settings_object variable, but this change was missed during rebasing. --- static/templates/settings/notification_settings.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/templates/settings/notification_settings.hbs b/static/templates/settings/notification_settings.hbs index 43f8506a79..72e4bd4624 100644 --- a/static/templates/settings/notification_settings.hbs +++ b/static/templates/settings/notification_settings.hbs @@ -137,7 +137,7 @@ {{#each notification_settings.other_email_settings}} {{> settings_checkbox setting_name=this - is_checked=(lookup ../user_settings this) + is_checked=(lookup ../settings_object this) label=(lookup ../settings_label this) prefix=../prefix}} {{/each}}