Procházet zdrojové kódy

Fixes #1566: pr hover link was missing

main
Eric Amodio před 3 roky
rodič
revize
c88b45e6e7
2 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/git/formatters/commitFormatter.ts

+ 1
- 0
CHANGELOG.md Zobrazit soubor

@ -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 Zobrazit soubor

@ -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

Načítá se…
Zrušit
Uložit