Ver código fonte

Adds hasChanges

main
Eric Amodio 3 anos atrás
pai
commit
393155a020
1 arquivos alterados com 4 adições e 0 exclusões
  1. +4
    -0
      src/git/models/status.ts

+ 4
- 0
src/git/models/status.ts Ver arquivo

@ -45,6 +45,10 @@ export class GitStatus {
return this.files.filter(f => f.conflicted);
}
get hasChanges() {
return this.files.length !== 0;
}
@memoize()
get hasConflicts() {
return this.files.some(f => f.conflicted);

Carregando…
Cancelar
Salvar