diff --git a/pages/index.vue b/pages/index.vue index b28e829..eaec2b7 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -105,7 +105,7 @@ { - const name = contribution.name || 'anonymous' - return name.toLowerCase().includes(this.contributionSearch.toLowerCase()) - }) + return this.contributions + .filter((contribution) => { + const name = contribution.name || 'anonymous' + return name.toLowerCase().includes(this.contributionSearch.toLowerCase()) + }) + .reverse() } }, async mounted() {