ソースを参照

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

読み込み中…
キャンセル
保存