From 7c488fc9da5d34fe747f5c9d8b245e9b49a2c7dc Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 7 Apr 2021 02:57:37 -0400 Subject: [PATCH] Hides working status from untracked stashed files --- src/git/models/stashCommit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git/models/stashCommit.ts b/src/git/models/stashCommit.ts index 96c1206..ef4a736 100644 --- a/src/git/models/stashCommit.ts +++ b/src/git/models/stashCommit.ts @@ -66,7 +66,7 @@ export class GitStashCommit extends GitLogCommit { status: GitFileWorkingTreeStatus.Untracked, conflictStatus: undefined, indexStatus: undefined, - workingTreeStatus: GitFileWorkingTreeStatus.Untracked, + workingTreeStatus: undefined, })); this.files.push(...files);