Somehow fixes check/uncheck behaviour in ad launcher

This commit is contained in:
FatCatClient 2024-01-13 20:33:21 +01:00
parent f3e6c6f0c4
commit a30f77f821
1 changed files with 3 additions and 1 deletions

View File

@ -142,7 +142,9 @@ export default class AdLauncherDialog extends CustomDialog {
e.preventDefault();
e.stopPropagation();
_.each(this.channels, (c) => c.value = newValue);
_.each(this.channels, (c) => {
c.value = newValue
});
}
submit(e: Event) {