Skip to content

Commit

Permalink
sort indices on snapshot restore
Browse files Browse the repository at this point in the history
closes #419
  • Loading branch information
lmenezes committed Feb 14, 2020
1 parent 66b73dd commit 5317ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/snapshot/restore_snapshot.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="col-lg-6">
<div class="form-group">
<label class="form-label">indices (defaults to all if none is selected)</label>
<select multiple="multiple" ng-model="form.indices" ng-options="i as i for i in snapshot.indices"
<select multiple="multiple" ng-model="form.indices" ng-options="i as i for i in snapshot.indices | orderBy"
class="form-control" size="13">
<option value="">Default is All</option>
</select>
Expand Down

0 comments on commit 5317ddd

Please sign in to comment.