Skip to content
Snippets Groups Projects
Commit ec59a188 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by Marcus Eibrink-Lunzenauer
Browse files

fix display, fixes #2002

Closes #2002

Merge request studip/studip!1303
parent 327bac3d
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,7 @@ export default { ...@@ -140,7 +140,7 @@ export default {
}, },
computed: { computed: {
sortedItems () { sortedItems () {
return [...this.items].sort((a, b) => { return [...this.allItems].sort((a, b) => {
if (a.icon === b.icon) { if (a.icon === b.icon) {
return a.name.localeCompare(b.name); return a.name.localeCompare(b.name);
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment