diff --git a/main/webapp/modules/core/scripts/facets/list-facet.js b/main/webapp/modules/core/scripts/facets/list-facet.js index 61b0e1f0f..0ba90db13 100644 --- a/main/webapp/modules/core/scripts/facets/list-facet.js +++ b/main/webapp/modules/core/scripts/facets/list-facet.js @@ -131,7 +131,7 @@ ListFacet.prototype.updateState = function(data) { ListFacet.prototype._reSortChoices = function() { this._data.choices.sort(this._options.sort == "name" ? function(a, b) { - return a.v.l.localeCompare(b.v.l); + return a.v.l.toLowerCase().localeCompare(b.v.l.toLowerCase()); } : function(a, b) { var c = b.c - a.c;