From cd9f1603932eb6995b8c7cb65856b9f2a9514896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1lm=C3=A1n=20K=C3=A9pes?= Date: Fri, 4 Aug 2023 18:21:07 +0200 Subject: [PATCH] Fixes issue with monitoring page not loading directly in the web app (#2350) 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 2a40b9449..03ff5d230 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