From 1e67392c0cac2bc070ac20a90e56ea4d7187718b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1lm=C3=A1n=20K=C3=A9pes?= <2853992+nyuuyn@users.noreply.github.com> Date: Mon, 31 Jul 2023 15:54:13 +0200 Subject: [PATCH] Fixes issue with monitoring page not loading directly in the web app MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kálmán Képes <2853992+nyuuyn@users.noreply.github.com> --- web/src/app/monitor/monitor-routing.module.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/app/monitor/monitor-routing.module.ts b/web/src/app/monitor/monitor-routing.module.ts index 2a40b94497..03ff5d2307 100644 --- a/web/src/app/monitor/monitor-routing.module.ts +++ b/web/src/app/monitor/monitor-routing.module.ts @@ -12,6 +12,11 @@ const routes: Routes = [ path: '', component: MonitorComponent, children: [ + { + path: '', + pathMatch: 'full', + redirectTo: 'tasks-priority' + }, { path: 'tasks-priority', component: TaskPriorityReportComponent