Merge pull request #310 from FatCatClient/adlauncher-selection-fix

Somehow fixes check/uncheck behaviour in ad launcher
This commit is contained in:
hearmeneigh 2024-01-26 16:50:20 -08:00 committed by GitHub
commit 1220acc107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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) {