Skip to content

Commit bb6a795

Browse files
bohemimadrew-gross
authored andcommitted
Sorting applications by name in the dashboard, #415 (#417)
1 parent aa3ac45 commit bb6a795

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lib/AppsManager.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ const AppsManager = {
1818
},
1919

2020
apps() {
21+
appsStore.sort(function(app1, app2) {
22+
return app1.name.localeCompare(app2.name);
23+
});
2124
return appsStore;
2225
},
2326

0 commit comments

Comments
 (0)