Parcourir la source

Fixes stash parents

main
Eric Amodio il y a 2 ans
Parent
révision
1002950f2a
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. +4
    -2
      src/plus/webviews/graph/graphWebview.ts

+ 4
- 2
src/plus/webviews/graph/graphWebview.ts Voir le fichier

@ -555,8 +555,10 @@ async function convertToRows(
parents = commit.parents;
// Remove the second parent, if existing, from each stash commit as it affects column processing
if (parents.length > 1 && stash) {
parents = [...parents].splice(1, 1);
if (stash && parents.length > 1) {
// Copy the array to avoid mutating the original
parents = [...parents];
parents.splice(1, 1);
}
rows.push({

Chargement…
Annuler
Enregistrer