From 5609dac326640082e35e2e8e6f62da911a9c45c1 Mon Sep 17 00:00:00 2001 From: Zemke Date: Mon, 31 Jan 2022 10:26:35 +0100 Subject: [PATCH] GH-287 Remove console.log --- cwt-angular/src/main/webapp/app/message/chat-input.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/cwt-angular/src/main/webapp/app/message/chat-input.component.ts b/cwt-angular/src/main/webapp/app/message/chat-input.component.ts index 10cbd264..ff693000 100644 --- a/cwt-angular/src/main/webapp/app/message/chat-input.component.ts +++ b/cwt-angular/src/main/webapp/app/message/chat-input.component.ts @@ -311,7 +311,6 @@ export class ChatInputComponent implements OnInit, AfterViewInit, OnDestroy { this.styleDropdownEl(q,v); - console.log('bef', this.allSuggestions.length, q); this.suggestions = this.allSuggestions .filter(({username}) => username.toLowerCase().startsWith(q.toLowerCase())) .slice(0, this.suggestionsSlice);