diff --git a/src/app/people/people.ts b/src/app/people/people.ts index a2589a2..0e5cdf3 100644 --- a/src/app/people/people.ts +++ b/src/app/people/people.ts @@ -100,7 +100,7 @@ export class PeopleComponent { }); } else if (sorting === 'followed-desc') { this.sortedItems = this.items.sort((a, b) => { - return a.followed! < b.followed! ? -1 : 1; + return a.followed! > b.followed! ? 1 : -1; }); } else if (sorting === 'created-asc') { this.sortedItems = this.items.sort((a, b) => {