stream_edit: Fix bug where personal settings weren't being saved.

This commit is contained in:
evykassirer 2024-11-12 21:40:21 -08:00 committed by Tim Abbott
parent ffc99d2025
commit 048387da05
1 changed files with 3 additions and 3 deletions

View File

@ -619,10 +619,10 @@ export function initialize(): void {
},
);
$<HTMLInputElement>("input#channels_overlay_container").on(
$("#channels_overlay_container").on(
"change",
".sub_setting_checkbox .sub_setting_control",
function on_change(this: HTMLInputElement) {
".sub_setting_checkbox input.sub_setting_control",
function on_change(this: HTMLInputElement, _event: JQuery.Event) {
stream_setting_changed(this);
},
);