From 6b4c985589989443007c5229aa7d3a2e9862cfde Mon Sep 17 00:00:00 2001 From: IJustDev <43793996+IJustDev@users.noreply.github.com> Date: Wed, 19 Aug 2020 08:00:27 +0200 Subject: [PATCH] Fix #18 --- src/issueProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/issueProvider.ts b/src/issueProvider.ts index 86415bd..2261f07 100644 --- a/src/issueProvider.ts +++ b/src/issueProvider.ts @@ -31,7 +31,7 @@ export class IssueProvider implements vscode.TreeDataProvider { 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;