Parcourir la source

Fixes bad if nesting

main
Eric Amodio il y a 4 ans
Parent
révision
541daa2854
1 fichiers modifiés avec 6 ajouts et 4 suppressions
  1. +6
    -4
      src/views/nodes/branchNode.ts

+ 6
- 4
src/views/nodes/branchNode.ts Voir le fichier

@ -145,10 +145,12 @@ export class BranchNode
children.push(
new BranchTrackingStatusNode(this.view, this, this.branch, status, 'same', this.root),
);
} else if (status.state.ahead) {
children.push(
new BranchTrackingStatusNode(this.view, this, this.branch, status, 'ahead', this.root),
);
} else {
if (status.state.ahead) {
children.push(
new BranchTrackingStatusNode(this.view, this, this.branch, status, 'ahead', this.root),
);
}
if (status.state.behind) {
children.push(

Chargement…
Annuler
Enregistrer