diff --git a/frontend/stores/CollectionsStore.js b/frontend/stores/CollectionsStore.js index a973c958d..6b5d2d997 100644 --- a/frontend/stores/CollectionsStore.js +++ b/frontend/stores/CollectionsStore.js @@ -49,7 +49,7 @@ class CollectionsStore { } @computed get orderedData(): Collection[] { - return _.sortBy(this.data, collection => collection.name); + return _.sortBy(this.data, 'name'); } /**