We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f5e142 commit f5c4af7Copy full SHA for f5c4af7
src/view/treeNodes/pullRequestNode.ts
@@ -322,7 +322,7 @@ export class PRNode extends TreeNode implements vscode.CommentingRangeProvider2
322
labelPrefix += `#${formattedPRNumber}: `;
323
}
324
325
- const label = `${labelPrefix}${isDraft ? '| ' : ''}${labelTitle}`;
+ const label = `${labelPrefix}${isDraft ? '[DRAFT] ' : ''}${labelTitle}`;
326
const description = `by @${login}`;
327
const command = {
328
title: vscode.l10n.t('View Pull Request Description'),
0 commit comments