This commit is contained in:
IJustDev 2020-08-19 08:00:27 +02:00 committed by GitHub
parent 858b8b7cda
commit 6b4c985589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ export class IssueProvider implements vscode.TreeDataProvider<Issue> {
const issuesOfPage = (await giteaConnector.getIssues(config.repoApiUrl, this.state, page)).data;
issues.push(...issuesOfPage);
issuesOfPage.forEach((c) => {
c.label = c.title;
c.label = `#${c.number} - ${c.title}`;
c.issueId = c.number;
c.assignee = c.assignee === null ? 'Nobody' : c.assignee;
c.creator = c.user.login;