Ver código fonte

Normalizes tracking to undefined

main
Eric Amodio 7 anos atrás
pai
commit
d0073e22cf
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/git/models/branch.ts

+ 1
- 1
src/git/models/branch.ts Ver arquivo

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

Carregando…
Cancelar
Salvar