|
|
|
@ -176,6 +176,13 @@
|
|
|
|
|
Created
|
|
|
|
|
</a>
|
|
|
|
|
</th>
|
|
|
|
|
<th ng-show="$ctrl.columnVisibility.columns.ip.display">
|
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('IP')">
|
|
|
|
|
IP Address
|
|
|
|
|
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'IP' && !$ctrl.state.reverseOrder"></i>
|
|
|
|
|
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'IP' && $ctrl.state.reverseOrder"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</th>
|
|
|
|
|
<th ng-if="$ctrl.showHostColumn" ng-show="$ctrl.columnVisibility.columns.host.display">
|
|
|
|
|
<a ng-click="$ctrl.changeOrderBy('NodeName')">
|
|
|
|
|
Host
|
|
|
|
@ -250,6 +257,7 @@
|
|
|
|
|
<td ng-show="$ctrl.columnVisibility.columns.created.display">
|
|
|
|
|
{{ item.Created | getisodatefromtimestamp }}
|
|
|
|
|
</td>
|
|
|
|
|
<td ng-show="$ctrl.columnVisibility.columns.ip.display">{{ item.IP ? item.IP : '-' }}</td>
|
|
|
|
|
<td ng-if="$ctrl.showHostColumn" ng-show="$ctrl.columnVisibility.columns.host.display">{{ item.NodeName ? item.NodeName : '-' }}</td>
|
|
|
|
|
<td ng-show="$ctrl.columnVisibility.columns.ports.display">
|
|
|
|
|
<a
|
|
|
|
|