summaryrefslogtreecommitdiffstats
path: root/pkg/commands/loaders/files.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/loaders/files.go')
-rw-r--r--pkg/commands/loaders/files.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/loaders/files.go b/pkg/commands/loaders/files.go
index 1e056cb98..f5becdb92 100644
--- a/pkg/commands/loaders/files.go
+++ b/pkg/commands/loaders/files.go
@@ -59,8 +59,8 @@ func (self *FileLoader) GetStatusFiles(opts GetStatusFileOptions) []*models.File
unstagedChange := change[1:2]
untracked := utils.IncludesString([]string{"??", "A ", "AM"}, change)
hasNoStagedChanges := utils.IncludesString([]string{" ", "U", "?"}, stagedChange)
- hasMergeConflicts := utils.IncludesString([]string{"DD", "AA", "UU", "AU", "UA", "UD", "DU"}, change)
hasInlineMergeConflicts := utils.IncludesString([]string{"UU", "AA"}, change)
+ hasMergeConflicts := hasInlineMergeConflicts || utils.IncludesString([]string{"DD", "AU", "UA", "UD", "DU"}, change)
file := &models.File{
Name: status.Name,