From c88b45e6e7a77a105f2fce1d80c1fdfe551a7975 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 1 Jul 2021 01:07:41 -0400 Subject: [PATCH] Fixes #1566: pr hover link was missing --- CHANGELOG.md | 1 + src/git/formatters/commitFormatter.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a23a6..186465a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed +- Fixes [#1566](https://github.com/eamodio/vscode-gitlens/issues/1566) - Bug: unable to open 'pr.url' when clicking PR link - Fixes [#1545](https://github.com/eamodio/vscode-gitlens/issues/1545) - Missing branch comparison controls in versions 11.5.0 and 11.5.1 - Fixes [#1548](https://github.com/eamodio/vscode-gitlens/issues/1548) - "Don't show again" on debug log warning doesn't work - Fixes [#1449](https://github.com/eamodio/vscode-gitlens/issues/1449) - Configured remotes not showing up in quickpick menu when opening commit on remote diff --git a/src/git/formatters/commitFormatter.ts b/src/git/formatters/commitFormatter.ts index 97f805b..ab554d7 100644 --- a/src/git/formatters/commitFormatter.ts +++ b/src/git/formatters/commitFormatter.ts @@ -516,7 +516,7 @@ export class CommitFormatter extends Formatter { const index = this._options.footnotes.size + 1; this._options.footnotes.set( index, - `[**$(git-pull-request) ${prTitle}**](pr.url "Open Pull Request \\#${pr.id} on ${ + `[**$(git-pull-request) ${prTitle}**](${pr.url} "Open Pull Request \\#${pr.id} on ${ pr.provider.name }")\\\n${GlyphChars.Space.repeat(4)} #${ pr.id