2018-05-31 06:48:49 +00:00
|
|
|
<h1>Unauthorized</h1>
|
|
|
|
|
|
|
|
<of-error-message [error]="error$ | async" [closable]="false"></of-error-message>
|
|
|
|
<of-block-progressbar [target]="content" [pending]="pending$ | async"></of-block-progressbar>
|
2018-04-24 05:31:20 +00:00
|
|
|
|
2018-05-28 09:06:33 +00:00
|
|
|
<p-panel #content [showHeader]="false" class="block-panel">
|
2018-06-14 05:35:59 +00:00
|
|
|
<p-table [value]="noauthProbes" selectionMode="single" dataKey="id" (onRowSelect)="select.emit($event.data)">
|
2018-04-24 05:31:20 +00:00
|
|
|
<ng-template pTemplate="header">
|
2018-05-28 09:06:33 +00:00
|
|
|
<tr>
|
2018-06-14 05:35:59 +00:00
|
|
|
<th>Probe Key</th>
|
2018-05-28 09:06:33 +00:00
|
|
|
<th>Host Name</th>
|
|
|
|
<th>OS</th>
|
2018-06-14 05:35:59 +00:00
|
|
|
<th>Created at</th>
|
2018-05-28 09:06:33 +00:00
|
|
|
</tr>
|
2018-04-24 05:31:20 +00:00
|
|
|
</ng-template>
|
2018-06-14 05:35:59 +00:00
|
|
|
<ng-template pTemplate="body" let-rowData>
|
|
|
|
<tr [pSelectableRow]="rowData">
|
2018-06-14 03:28:29 +00:00
|
|
|
<td>{{rowData.tempProbeKey}}</td>
|
2018-06-14 04:12:20 +00:00
|
|
|
<td>{{rowData.infraHost.infraHostOS.name}}</td>
|
|
|
|
<td>{{rowData.infraHost.infraHostOS.os}}</td>
|
2018-05-28 09:06:33 +00:00
|
|
|
<td>{{rowData.createDate | date: 'dd/MM/yyyy'}}</td>
|
|
|
|
</tr>
|
2018-04-24 05:31:20 +00:00
|
|
|
</ng-template>
|
2018-05-28 09:06:33 +00:00
|
|
|
</p-table>
|
|
|
|
</p-panel>
|