Procházet zdrojové kódy

Fix commits incorrectly being merge type

main
Ramin Tadayon před 2 roky
rodič
revize
1ae096f215
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 5B90E918AEBCE7A7
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts Zobrazit soubor

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

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