mirror of https://github.com/zulip/zulip.git
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.
This commit is contained in:
parent
87cd743f99
commit
cc65ed103c
|
@ -137,7 +137,7 @@
|
||||||
{{#each notification_settings.other_email_settings}}
|
{{#each notification_settings.other_email_settings}}
|
||||||
{{> settings_checkbox
|
{{> settings_checkbox
|
||||||
setting_name=this
|
setting_name=this
|
||||||
is_checked=(lookup ../user_settings this)
|
is_checked=(lookup ../settings_object this)
|
||||||
label=(lookup ../settings_label this)
|
label=(lookup ../settings_label this)
|
||||||
prefix=../prefix}}
|
prefix=../prefix}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
Loading…
Reference in New Issue