Explorar el Código

Adds hasChanges

main
Eric Amodio hace 3 años
padre
commit
393155a020
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/git/models/status.ts

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

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

Cargando…
Cancelar
Guardar