From 6aa6647f53eb47f21e0e5318532fbb4365c0560b Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 1 Feb 2023 10:42:14 +0800 Subject: [PATCH] Remove goToSystemStatus() after merge --- src/app/components/projects/projects.component.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/app/components/projects/projects.component.ts b/src/app/components/projects/projects.component.ts index 7b88b6a0..d1c41224 100644 --- a/src/app/components/projects/projects.component.ts +++ b/src/app/components/projects/projects.component.ts @@ -69,12 +69,6 @@ export class ProjectsComponent implements OnInit { this.projectService.projectListSubject.subscribe(() => this.refresh()); } - goToSystemStatus() { - this.router - .navigate(['/server', this.server.id, 'systemstatus']) - .catch((error) => this.toasterService.error('Cannot navigate to the system status')); - } - refresh() { this.projectService.list(this.controller).subscribe( (projects: Project[]) => {