mirror of https://github.com/zulip/zulip.git
stream_edit: Fix bug where personal settings weren't being saved.
This commit is contained in:
parent
ffc99d2025
commit
048387da05
|
@ -619,10 +619,10 @@ export function initialize(): void {
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
$<HTMLInputElement>("input#channels_overlay_container").on(
|
$("#channels_overlay_container").on(
|
||||||
"change",
|
"change",
|
||||||
".sub_setting_checkbox .sub_setting_control",
|
".sub_setting_checkbox input.sub_setting_control",
|
||||||
function on_change(this: HTMLInputElement) {
|
function on_change(this: HTMLInputElement, _event: JQuery.Event) {
|
||||||
stream_setting_changed(this);
|
stream_setting_changed(this);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue