瀏覽代碼

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

Loading…
取消
儲存