ing
This commit is contained in:
@@ -47,7 +47,11 @@
|
||||
<b>HostID:</b> {{rowData.descriptions.host.hostID}}
|
||||
</div>
|
||||
<div class="ui-g-12">
|
||||
<b>Connected:</b> {{rowData.connectDate | date: 'dd/MM/yyyy'}} ({{rowData.connectAddress}})
|
||||
<b>Connected:</b>
|
||||
<ng-container [ngSwitch]="rowData.connectDate">
|
||||
<ng-container *ngSwitchCase="undefined"> Not Connected</ng-container>
|
||||
<ng-container *ngSwitchDefault> {{rowData.connectDate | date: 'dd/MM/yyyy'}} ({{rowData.connectAddress}})</ng-container>
|
||||
</ng-container>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -29,6 +29,7 @@ export class NoAuthProbeListComponent implements OnInit, OnDestroy {
|
||||
private store: Store<any>,
|
||||
private noAuthProbeService: NoAuthProbeService,
|
||||
) {
|
||||
this.noauthProbes = [];
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
|
||||
Reference in New Issue
Block a user