Parcourir la source

Fix commits incorrectly being merge type

main
Ramin Tadayon il y a 2 ans
Parent
révision
1ae096f215
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 5B90E918AEBCE7A7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts Voir le fichier

@ -1828,7 +1828,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
// TODO: review logic for stash, wip, etc
type: isStashCommit
? GitGraphRowType.Stash
: commit.parents.length > 1
: parents.length > 1
? GitGraphRowType.MergeCommit
: GitGraphRowType.Commit,
heads: refHeads,

Chargement…
Annuler
Enregistrer