From c606b5596d61a4a703300e81f45c60805eda0673 Mon Sep 17 00:00:00 2001 From: tomsun28 Date: Wed, 2 Mar 2022 16:59:46 +0800 Subject: [PATCH] =?UTF-8?q?[web-app]=E6=96=B0=E5=A2=9E=E7=9B=91=E6=8E=A7?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=BC=80=E5=90=AF=E6=8E=A2=E6=B5=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/routes/monitor/monitor-new/monitor-new.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-app/src/app/routes/monitor/monitor-new/monitor-new.component.ts b/web-app/src/app/routes/monitor/monitor-new/monitor-new.component.ts index 4adac14..f97ea5c 100644 --- a/web-app/src/app/routes/monitor/monitor-new/monitor-new.component.ts +++ b/web-app/src/app/routes/monitor/monitor-new/monitor-new.component.ts @@ -21,7 +21,7 @@ export class MonitorNewComponent implements OnInit { paramDefines!: ParamDefine[]; params!: Param[]; monitor!: Monitor; - detected: boolean = false; + detected: boolean = true; passwordVisible: boolean = false; // 是否显示加载中 isSpinning: boolean = false; @@ -45,7 +45,7 @@ export class MonitorNewComponent implements OnInit { switchMap((paramMap: ParamMap) => { this.monitor.app = paramMap.get('app') || ''; this.titleSvc.setTitleByI18n(`monitor.app.${this.monitor.app}`); - this.detected = false; + this.detected = true; this.passwordVisible = false; this.isSpinning = false; return this.appDefineSvc.getAppParamsDefine(this.monitor.app);