Procházet zdrojové kódy

Adds hasChanges

main
Eric Amodio před 3 roky
rodič
revize
393155a020
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. +4
    -0
      src/git/models/status.ts

+ 4
- 0
src/git/models/status.ts Zobrazit soubor

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

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