Procházet zdrojové kódy

Normalizes tracking to undefined

main
Eric Amodio před 7 roky
rodič
revize
d0073e22cf
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/git/models/branch.ts

+ 1
- 1
src/git/models/branch.ts Zobrazit soubor

@ -26,7 +26,7 @@ export class GitBranch {
this.current = current;
this.name = branch;
this.tracking = tracking;
this.tracking = tracking === '' || tracking == null ? undefined : tracking;
this.state = {
ahead: ahead,
behind: behind

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