Преглед изворни кода

Fix commits incorrectly being merge type

main
Ramin Tadayon пре 2 година
родитељ
комит
1ae096f215
No known key found for this signature in database GPG Key ID: 5B90E918AEBCE7A7
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts Прегледај датотеку

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

Loading…
Откажи
Сачувај