From 38564a1709c486a078f72177dd8b3bd2d64627a4 Mon Sep 17 00:00:00 2001 From: Michael Hackstein Date: Sat, 13 Dec 2014 13:12:45 +0100 Subject: [PATCH] Sorted list from fishbowl --- js/apps/system/aardvark/frontend/js/views/applicationsView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }); });