diff --git a/chat/ads/AdLauncher.vue b/chat/ads/AdLauncher.vue
index f0c7420..ce8d8fa 100644
--- a/chat/ads/AdLauncher.vue
+++ b/chat/ads/AdLauncher.vue
@@ -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) {