Skip to content

Commit

Permalink
Merge pull request stakwork#343 from stakwork/feat/changed_assigned
Browse files Browse the repository at this point in the history
Changed the sort column for created an assigned bounties
  • Loading branch information
elraphty authored Mar 1, 2024
2 parents 2650953 + 0ca9695 commit 3e5eb3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/store/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -938,9 +938,9 @@ export class MainStore {
queryParams = { ...queryParams, search: uiStore.searchText };

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

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

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

try {
Expand Down

0 comments on commit 3e5eb3e

Please sign in to comment.