We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab26074 commit 81d26ddCopy full SHA for 81d26dd
frontend/src/app/shared/components/utm/util/utm-agent-detail/utm-agent-detail.component.ts
@@ -1,5 +1,5 @@
1
import {Component, Input, OnInit} from '@angular/core';
2
-import {EMPTY, of} from 'rxjs';
+import {EMPTY} from 'rxjs';
3
import {catchError, map, tap} from 'rxjs/operators';
4
import {NetScanType} from '../../../../../assets-discover/shared/types/net-scan.type';
5
import {UtmToastService} from '../../../../alert/utm-toast.service';
@@ -53,6 +53,7 @@ export class UtmAgentDetailComponent implements OnInit {
53
this.loading = true;
54
const agent = {
55
id: this.agent.id,
56
+ hostname: this.agent.hostname,
57
ip: this.agentIp,
58
mac: this.macs.length > 0 ? this.macs[0] : '',
59
agentKey: this.agent.agentKey
0 commit comments