浏览代码

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

正在加载...
取消
保存