Eric Amodio пре 3 година
родитељ
комит
393155a020
1 измењених фајлова са 4 додато и 0 уклоњено
  1. +4
    -0
      src/git/models/status.ts

+ 4
- 0
src/git/models/status.ts Прегледај датотеку

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

Loading…
Откажи
Сачувај