From 133dd12de6bb0f2f65213dd9c0b11537a7c6d4ef Mon Sep 17 00:00:00 2001 From: crusader Date: Thu, 18 Oct 2018 13:08:11 +0900 Subject: [PATCH] ing --- src/app/component/infra/detail/host.component.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/component/infra/detail/host.component.ts b/src/app/component/infra/detail/host.component.ts index 765163d..33f4549 100644 --- a/src/app/component/infra/detail/host.component.ts +++ b/src/app/component/infra/detail/host.component.ts @@ -56,7 +56,12 @@ export class HostComponent implements OnChanges { deadline: this.deadline, }; - this.pingService.pingHost(this.host, option) + const _host: Host = { + ...this.host, + portList: null, + }; + + this.pingService.pingHost(_host, option) .pipe( map((pingResult: PingResult) => { if (pingResult) {