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:
parent
b7c48fcbed
commit
575735a6f7
4 changed files with 4 additions and 4 deletions
|
@ -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">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue