From bcd119c9180f184b4faf83d034591590a43c660e Mon Sep 17 00:00:00 2001 From: elraphty Date: Wed, 28 Feb 2024 15:57:20 +0100 Subject: [PATCH] changed the created and assigned bounties sorting --- src/store/main.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/store/main.ts b/src/store/main.ts index 9597fe44..4a1fb187 100644 --- a/src/store/main.ts +++ b/src/store/main.ts @@ -939,7 +939,8 @@ export class MainStore { const query = this.appendQueryParams(`people/wanteds/assigned/${uuid}`, paginationQueryLimit, { sortBy: 'paid', - ...queryParams + ...queryParams, + direction: 'ASC' }); try { @@ -986,7 +987,8 @@ export class MainStore { const query = this.appendQueryParams(`people/wanteds/created/${uuid}`, paginationQueryLimit, { ...queryParams, - sortBy: 'paid' + sortBy: 'paid', + direction: 'ASC' }); try {