sort issues by update instead of creation date

This commit is contained in:
ericLemanissier 2024-05-24 08:48:38 +00:00
parent 3f3b0175e8
commit 7dcfdab37a
1 changed files with 1 additions and 0 deletions

View File

@ -571,6 +571,7 @@ export class IssuesProcessor {
state: 'open', state: 'open',
per_page: 100, per_page: 100,
direction: this.options.ascending ? 'asc' : 'desc', direction: this.options.ascending ? 'asc' : 'desc',
sort: 'updated',
page page
}); });
this.statistics?.incrementFetchedItemsCount(issueResult.data.length); this.statistics?.incrementFetchedItemsCount(issueResult.data.length);