瀏覽代碼

Fixes #1566: pr hover link was missing

main
Eric Amodio 3 年之前
父節點
當前提交
c88b45e6e7
共有 2 個文件被更改,包括 2 次插入1 次删除
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/git/formatters/commitFormatter.ts

+ 1
- 0
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

+ 1
- 1
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

Loading…
取消
儲存