Merge pull request #310 from FatCatClient/adlauncher-selection-fix
Somehow fixes check/uncheck behaviour in ad launcher
This commit is contained in:
commit
1220acc107
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue