Fix #18
This commit is contained in:
parent
858b8b7cda
commit
6b4c985589
@ -31,7 +31,7 @@ export class IssueProvider implements vscode.TreeDataProvider<Issue> {
|
|||||||
const issuesOfPage = (await giteaConnector.getIssues(config.repoApiUrl, this.state, page)).data;
|
const issuesOfPage = (await giteaConnector.getIssues(config.repoApiUrl, this.state, page)).data;
|
||||||
issues.push(...issuesOfPage);
|
issues.push(...issuesOfPage);
|
||||||
issuesOfPage.forEach((c) => {
|
issuesOfPage.forEach((c) => {
|
||||||
c.label = c.title;
|
c.label = `#${c.number} - ${c.title}`;
|
||||||
c.issueId = c.number;
|
c.issueId = c.number;
|
||||||
c.assignee = c.assignee === null ? 'Nobody' : c.assignee;
|
c.assignee = c.assignee === null ? 'Nobody' : c.assignee;
|
||||||
c.creator = c.user.login;
|
c.creator = c.user.login;
|
||||||
|
Loading…
Reference in New Issue
Block a user