diff --git a/app/views/concepts/_list.html.haml b/app/views/concepts/_list.html.haml
index 83a4a27d3d..6b67d002f2 100644
--- a/app/views/concepts/_list.html.haml
+++ b/app/views/concepts/_list.html.haml
@@ -3,7 +3,7 @@
next_url: concept_list_url(@page.nextPage, request_collection_id, @ontology.acronym),
current_page: @page.page, next_page: @page.nextPage,
auto_click: @auto_click) do |c|
- - concepts = c.collection.sort_by{|concept| [concept.prefLabel || concept.id]}
+ - concepts = c.collection.sort_by{|concept| [concept.prefLabel.capitalize || concept.id]}
- if concepts && !concepts.empty?
= raw tree_link_to_concept(child: concepts.shift, ontology_acronym: @ontology.acronym, active_style: c.auto_click? ? 'active' : '')
- concepts.each do |concept|