Parcourir la source

Fixes missing full message & files on details view

main
Eric Amodio il y a 2 ans
Parent
révision
9bf200b276
2 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/webviews/commitDetails/commitDetailsWebviewView.ts

+ 1
- 0
CHANGELOG.md Voir le fichier

@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#2271](https://github.com/gitkraken/vscode-gitlens/issues/2271) - Terminal commands should wrap path with quote to deal with path contains space
- Fixes an issue where the _Commit Details_ view fails to show the full commit message and changed files when following editor lines
## [13.0.2] - 2022-10-17

+ 1
- 1
src/webviews/commitDetails/commitDetailsWebviewView.ts Voir le fichier

@ -626,7 +626,7 @@ export class CommitDetailsWebviewView extends WebviewViewBase
private async getDetailsModel(commit: GitCommit, formattedMessage?: string): Promise<CommitDetails> {
const [commitResult, avatarUriResult, remoteResult] = await Promise.allSettled([
!commit.hasFullDetails ? commit.ensureFullDetails().then(() => commit) : commit,
!commit.hasFullDetails() ? commit.ensureFullDetails().then(() => commit) : commit,
commit.author.getAvatarUri(commit),
this.container.git.getBestRemoteWithRichProvider(commit.repoPath, { includeDisconnected: true }),
]);

Chargement…
Annuler
Enregistrer