From 10b6bc2508a7ef6041a035ef2cc507e73e0ccd47 Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Wed, 5 Feb 2025 18:21:42 -0800 Subject: [PATCH] Fix broken merge (#24341) Release Notes: - N/A --- crates/git_ui/src/git_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/git_ui/src/git_panel.rs b/crates/git_ui/src/git_panel.rs index d47e066f33..a65b55bcb7 100644 --- a/crates/git_ui/src/git_panel.rs +++ b/crates/git_ui/src/git_panel.rs @@ -1030,7 +1030,7 @@ impl GitPanel { }; if repo.has_conflict(&status_entry.repo_path) { self.conflicted_count += 1; - if self.entry_appears_staged(status_entry) != Some(false) { + if self.entry_is_staged(status_entry) != Some(false) { self.conflicted_staged_count += 1; } } else if status_entry.status.is_created() {