mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 13:55:21 +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
|
@ -354,7 +354,7 @@
|
|||
<div class="col-sm-9">
|
||||
<select class="form-control" ng-model="formValues.Network">
|
||||
<option selected disabled hidden value="">Select a network</option>
|
||||
<option ng-repeat="net in availableNetworks" ng-value="net.Name">{{ net.Name }}</option>
|
||||
<option ng-repeat="net in availableNetworks | orderBy: 'Name'" ng-value="net.Name">{{ net.Name }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-2"></div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue