Merge branch 'master' of https://git.loafle.net/overflow_scanner/app
This commit is contained in:
@@ -30,16 +30,14 @@
|
||||
<span class="meta-value">{{host.mac}}</span>
|
||||
</li>
|
||||
|
||||
<li *ngIf="host.discoveredBy">
|
||||
Discovered by
|
||||
<span class="meta-value">{{host.discoveredBy.join(',')}}</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</p-tabPanel>
|
||||
|
||||
<p-tabPanel header="Metadata" *ngIf="host.meta && host.meta.length > 0">
|
||||
|
||||
<p-tabPanel header="Metadata" *ngIf="host.meta">
|
||||
<div *ngFor="let key of host.meta | objectKeys">
|
||||
{{key | stringPrettify}}: {{host.meta[key]}}
|
||||
</div>
|
||||
</p-tabPanel>
|
||||
|
||||
<p-tabPanel header="Ports" *ngIf="host.portList">
|
||||
|
||||
@@ -12,11 +12,11 @@ export class HostDetailComponent {
|
||||
@Input() host: Host;
|
||||
ports: Port[];
|
||||
selectedPort: Port;
|
||||
discoveredBy: string;
|
||||
|
||||
constructor(
|
||||
) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user