diff --git a/js/apps/system/aardvark/frontend/js/views/applicationsView.js b/js/apps/system/aardvark/frontend/js/views/applicationsView.js index 0e2ec4902c..22f21dd628 100644 --- a/js/apps/system/aardvark/frontend/js/views/applicationsView.js +++ b/js/apps/system/aardvark/frontend/js/views/applicationsView.js @@ -635,7 +635,7 @@ var listTempl = this.appStoreTemplate; $.get("foxxes/fishbowl", function(list) { var table = $("#appstore-content"); - _.each(list, function(app) { + _.each(_.sortBy(list, "name"), function(app) { table.append(listTempl.render(app)); }); });