fix(storidge): update 8 - revert cluster availability

storidge-standalone
baron_l 2019-04-27 18:43:05 +02:00
parent 2bc8b6bed1
commit b52dcaacc8
2 changed files with 0 additions and 12 deletions

View File

@ -61,13 +61,6 @@
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Status' && $ctrl.state.reverseOrder"></i>
</a>
</th>
<th>
<a ng-click="$ctrl.changeOrderBy('Availability')">
Availability
<i class="fa fa-sort-alpha-down" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Availability' && !$ctrl.state.reverseOrder"></i>
<i class="fa fa-sort-alpha-up" aria-hidden="true" ng-if="$ctrl.state.orderBy === 'Availability' && $ctrl.state.reverseOrder"></i>
</a>
</th>
</tr>
</thead>
<tbody>
@ -81,10 +74,6 @@
<i class="fa fa-heartbeat space-right {{ item.Status | storidgeNodeStatusBadge }}"></i>
{{ item.Status }}
</td>
<td>
<!-- <i class="fa fa-heartbeat space-right {{ item.Availability | storidgeNodeStatusBadge }}"></i> -->
{{ item.Availability }}
</td>
</tr>
<tr ng-if="!$ctrl.dataset">
<td colspan="4" class="text-center text-muted">Loading...</td>

View File

@ -3,7 +3,6 @@ export function StoridgeNodeModel(name, data) {
this.IP = data.ip;
this.Role = data.role;
this.Status = data.status;
this.Availability = data.availability;
}
export function StoridgeNodeDetailedModel(name, properties) {