1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

feat(ux): sort networks alphabetically in network selection dropdowns (#2326)

* Sort network lists
This commit is contained in:
Ricardo Cardona Ramirez 2018-10-03 18:04:38 -05:00 committed by Anthony Lapenna
parent b7c48fcbed
commit 575735a6f7
4 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@
<div class="col-sm-5 col-lg-4">
<select class="form-control" ng-model="$ctrl.selectedNetwork" id="container_network">
<option selected disabled hidden value="">Select a network</option>
<option ng-repeat="net in $ctrl.availableNetworks" ng-value="net.Id">{{ net.Name }}</option>
<option ng-repeat="net in $ctrl.availableNetworks | orderBy: 'Name'" ng-value="net.Id">{{ net.Name }}</option>
</select>
</div>
<div class="col-sm-1">