diff --git a/frontend/app/components/modules/collection/components/details/filters.vue b/frontend/app/components/modules/collection/components/details/filters.vue index ad385b3af..043afdfed 100644 --- a/frontend/app/components/modules/collection/components/details/filters.vue +++ b/frontend/app/components/modules/collection/components/details/filters.vue @@ -86,19 +86,19 @@ const sort = computed({ const sortOptions = [ { label: 'Alphabeticly', - value: 'name_ASC' + value: 'name_asc' }, { label: 'Most contributors', - value: 'contributorsCount_DESC' + value: 'contributorCount_desc' }, { label: 'Most organizations', - value: 'organizationsCount_DESC' + value: 'organizationCount_desc' }, // { // label: 'Most valuable', - // value: 'softwareValueCount_DESC' + // value: 'softwareValueCount_desc' // }, ]; diff --git a/frontend/app/components/modules/collection/components/details/header.vue b/frontend/app/components/modules/collection/components/details/header.vue index fb1e8b939..28d699853 100644 --- a/frontend/app/components/modules/collection/components/details/header.vue +++ b/frontend/app/components/modules/collection/components/details/header.vue @@ -75,7 +75,7 @@ class="leading-6 transition-all" :class="scrollTop > 50 ? 'text-xs md:text-sm' : 'text-xs md:text-base'" > - {{formatNumberShort(props.collection.projectsCount)}} projects + {{formatNumberShort(props.collection.projectCount)}} projects
@@ -108,9 +108,9 @@