Procházet zdrojové kódy

Adds separator to commits view

main
Eric Amodio před 4 roky
rodič
revize
6fdf7a98be
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. +4
    -0
      src/views/nodes/branchNode.ts

+ 4
- 0
src/views/nodes/branchNode.ts Zobrazit soubor

@ -163,6 +163,10 @@ export class BranchNode
}
}
if (children.length !== 0) {
children.push(new MessageNode(this.view, this, '', GlyphChars.Dash.repeat(2), ''));
}
let unpublished: GitLog | undefined;
if (this.branch.tracking && this.branch.state.ahead) {
unpublished = await Container.git.getLog(this.uri.repoPath!, {

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