Skip to content

Commit 7dc3900

Browse files
authored
Enhance message on "copied to clipboard" notification (#3455)
Fixes #3439
1 parent 8b94dc2 commit 7dc3900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github/pullRequestOverview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ export class PullRequestOverviewPanel extends IssueOverviewPanel<PullRequestMode
854854

855855
private async copyPrLink(): Promise<void> {
856856
await vscode.env.clipboard.writeText(this._item.html_url);
857-
vscode.window.showInformationMessage(`Copied link to PR ${this._item.title}!`);
857+
vscode.window.showInformationMessage(`Copied link to PR "${this._item.title}"!`);
858858
}
859859

860860
protected editCommentPromise(comment: IComment, text: string): Promise<IComment> {

0 commit comments

Comments
 (0)