diff options
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb index 318ef909ae7..6205dc9c149 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb @@ -47,7 +47,7 @@ <td width="1%" nowrap>Name: </td> <td><input type="text" name="name"></input></td> </tr> - <% importers.each do |importer| %> + <% importers.to_a.sort{|x,y| x.getName() <=> y.getName()}.each do |importer| %> <tr> <td width="1%" nowrap><%= importer.getName() -%>: </td> <td> |