From 816871eed30b28bd838dc7f3eacb3ac7ed668bc6 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 16 Mar 2021 03:08:48 -0700 Subject: [PATCH] Redundant call to scroll --- src-ui/src/app/components/manage/logs/logs.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src-ui/src/app/components/manage/logs/logs.component.ts b/src-ui/src/app/components/manage/logs/logs.component.ts index 54f8294c9..26ceb5c57 100644 --- a/src-ui/src/app/components/manage/logs/logs.component.ts +++ b/src-ui/src/app/components/manage/logs/logs.component.ts @@ -35,7 +35,6 @@ export class LogsComponent implements OnInit, AfterViewChecked { reloadLogs() { this.logService.get(this.activeLog).subscribe(result => { this.logs = result - this.scrollToBottom() }, error => { this.logs = [] })