chore(edgegroups): rename decoratedEdgeGroup property EE-5501 (#9212)
parent
88da28694c
commit
b5c5df798a
|
@ -14,7 +14,7 @@ import (
|
|||
type decoratedEdgeGroup struct {
|
||||
portainer.EdgeGroup
|
||||
HasEdgeStack bool `json:"HasEdgeStack"`
|
||||
HasEdgeGroup bool `json:"HasEdgeGroup"`
|
||||
HasEdgeJob bool `json:"HasEdgeJob"`
|
||||
EndpointTypes []portainer.EndpointType
|
||||
}
|
||||
|
||||
|
@ -99,7 +99,7 @@ func getEdgeGroupList(tx dataservices.DataStoreTx) ([]decoratedEdgeGroup, error)
|
|||
|
||||
edgeGroup.EndpointTypes = endpointTypes
|
||||
edgeGroup.HasEdgeStack = usedEdgeGroups[edgeGroup.ID]
|
||||
edgeGroup.HasEdgeGroup = usedByEdgeJob
|
||||
edgeGroup.HasEdgeJob = usedByEdgeJob
|
||||
|
||||
decoratedEdgeGroups = append(decoratedEdgeGroups, edgeGroup)
|
||||
}
|
||||
|
|
|
@ -78,13 +78,13 @@
|
|||
id="select_{{ $index }}"
|
||||
type="checkbox"
|
||||
ng-model="item.Checked"
|
||||
ng-disabled="item.HasEdgeStack || item.HasEdgeGroup"
|
||||
ng-disabled="item.HasEdgeStack || item.HasEdgeJob"
|
||||
ng-click="$ctrl.selectItem(item, $event)"
|
||||
/>
|
||||
<label for="select_{{ $index }}"></label>
|
||||
</span>
|
||||
<a ui-sref="edge.groups.edit({groupId: item.Id})">{{ item.Name }}</a>
|
||||
<span ng-if="item.HasEdgeStack || item.HasEdgeGroup" class="label label-info image-tag space-left">in use</span>
|
||||
<span ng-if="item.HasEdgeStack || item.HasEdgeJob" class="label label-info image-tag space-left">in use</span>
|
||||
</td>
|
||||
<td>{{ item.Endpoints.length }}</td>
|
||||
<td>{{ item.Dynamic ? 'Dynamic' : 'Static' }}</td>
|
||||
|
|
Loading…
Reference in New Issue