1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-07 23:05:26 +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

@ -111,7 +111,7 @@
<div class="form-group">
<label for="container_network" class="col-sm-2 control-label text-left">Network</label>
<div class="col-sm-10">
<select class="form-control" ng-options="net.Name for net in availableNetworks" ng-model="formValues.network">
<select class="form-control" ng-options="net.Name for net in availableNetworks | orderBy: 'Name'" ng-model="formValues.network">
<option disabled hidden value="">Select a network</option>
</select>
</div>