소스 검색

Adds hasChanges

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

불러오는 중...
취소
저장