Skip to content

Commit

Permalink
Merge pull request stakwork#322 from stakwork/fix/created_sorting
Browse files Browse the repository at this point in the history
Changed the created and assigned bounties sorting
  • Loading branch information
elraphty authored Feb 28, 2024
2 parents f65c887 + bcd119c commit ef4b85f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/store/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,8 @@ export class MainStore {

const query = this.appendQueryParams(`people/wanteds/assigned/${uuid}`, paginationQueryLimit, {
sortBy: 'paid',
...queryParams
...queryParams,
direction: 'ASC'
});

try {
Expand Down Expand Up @@ -986,7 +987,8 @@ export class MainStore {

const query = this.appendQueryParams(`people/wanteds/created/${uuid}`, paginationQueryLimit, {
...queryParams,
sortBy: 'paid'
sortBy: 'paid',
direction: 'ASC'
});

try {
Expand Down

0 comments on commit ef4b85f

Please sign in to comment.