Skip to content

Commit

Permalink
Merge pull request #100 from upmc-enterprises/pluginSort
Browse files Browse the repository at this point in the history
Sort plugins alphabetically
  • Loading branch information
PGBI committed May 13, 2017
2 parents 861208d + 76f2df6 commit 8ec1509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/html/plugins/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h3 class="header">{{mode==='create' ? 'Add plugin' : 'Edit plugin'}}</h3>
<select materialize-select
ng-model="plugin.name"
ng-change="loadSchema()"
ng-options="p for p in enabled_plugins"
ng-options="p for p in enabled_plugins | orderBy: 'toString()'"
ng-disabled="{{mode==='edit'}}"
>
<option value="" disabled ng-selected="{{mode==='create'}}">Choose Plugin</option>
Expand Down

0 comments on commit 8ec1509

Please sign in to comment.