Explorar el Código

Fix commits incorrectly being merge type

main
Ramin Tadayon hace 2 años
padre
commit
1ae096f215
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 5B90E918AEBCE7A7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts Ver fichero

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

Cargando…
Cancelar
Guardar