This commit is contained in:
insanity 2018-04-25 21:37:05 +09:00
parent 57470501c0
commit 3ac55a528e
3 changed files with 0 additions and 10 deletions

View File

@ -21,9 +21,6 @@ export class HostSummaryComponent implements OnInit, AfterContentInit, OnChanges
} }
ngOnChanges() { ngOnChanges() {
if (!this.visible) {
this.host = null;
}
} }
} }

View File

@ -43,10 +43,6 @@ export class ProbeSummaryComponent implements OnInit, AfterContentInit, OnChange
} }
ngOnChanges() { ngOnChanges() {
if (!this.visible) {
this.probe = null;
this.probeHost = null;
}
} }
} }

View File

@ -23,9 +23,6 @@ export class ServiceSummaryComponent implements OnInit, AfterContentInit, OnChan
} }
ngOnChanges() { ngOnChanges() {
if (!this.visible) {
this.service = null;
}
} }
} }