From a8ad5d6b4dee72367acb1f33138d05286bc3e5c6 Mon Sep 17 00:00:00 2001 From: tomsun28 Date: Sun, 30 Jan 2022 10:19:29 +0800 Subject: [PATCH] =?UTF-8?q?[webapp]=20=E7=9B=91=E6=8E=A7=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web-app/src/app/routes/monitor/monitor-routing.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/src/app/routes/monitor/monitor-routing.module.ts b/web-app/src/app/routes/monitor/monitor-routing.module.ts index da1a79a..3ef5d69 100644 --- a/web-app/src/app/routes/monitor/monitor-routing.module.ts +++ b/web-app/src/app/routes/monitor/monitor-routing.module.ts @@ -10,7 +10,7 @@ const routes: Routes = [ { path: '', component: MonitorListComponent }, { path: 'new', component: MonitorNewComponent }, { path: ':monitorId/edit', component: MonitorEditComponent }, - { path: ':monitorId', component: MonitorDetailComponent }, + { path: ':monitorId', component: MonitorDetailComponent, data: { title: '监控详情' } }, { path: '**', component: MonitorListComponent } ];