[webapp] 监控详情页面标题

This commit is contained in:
tomsun28
2022-01-30 10:19:29 +08:00
parent 97362beef3
commit a8ad5d6b4d

View File

@@ -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 }
];