test
This commit is contained in:
@@ -53,11 +53,9 @@ export class HostDetailComponent implements OnChanges {
|
||||
.call<PingResult>('PingService.PingHost', this.host, option)
|
||||
.pipe(
|
||||
map((pingResult: PingResult) => {
|
||||
console.log(pingResult);
|
||||
if (pingResult) {
|
||||
this.pingResult = pingResult;
|
||||
console.log(pingResult.raw);
|
||||
this.pingResultRaw = pingResult.raw.join('');
|
||||
this.pingResultRaw = pingResult.raw.join('\r\n');
|
||||
}
|
||||
this.pingWaiting = false;
|
||||
}),
|
||||
|
||||
@@ -21,4 +21,5 @@ export class NodeDetailComponent {
|
||||
otherHostSelected(host: Host) {
|
||||
this.otherHostSelect.emit(host);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -30,4 +30,5 @@ export class ZoneDetailComponent implements OnInit {
|
||||
hostSelected(host: Host) {
|
||||
this.otherHostSelect.emit(host);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user