From cf91fe1627984c81cd608134612495573a6bcf21 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sun, 2 Jun 2019 19:42:05 -0500 Subject: [PATCH] Textarea instead of input --- chat/ConversationSettings.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat/ConversationSettings.vue b/chat/ConversationSettings.vue index 75b628f..f6bb062 100644 --- a/chat/ConversationSettings.vue +++ b/chat/ConversationSettings.vue @@ -37,7 +37,7 @@
- +
@@ -88,7 +88,7 @@ joinMessages: this.joinMessages, defaultHighlights: this.defaultHighlights, adSettings: { - ads: this.ads.filter((ad: string) => (ad.length > 0)) + ads: this.ads.map((ad: string) => ad.trim()).filter((ad: string) => (ad.length > 0)) } }; }