git: Fix graph view slow initial loading times (#47453)

Anthony Eid created

The git graph view was missing a `cx.notify` when it loaded commits from
the data layer, causing the graph to seem unresponsive until a render
was triggered by something else.

Release Notes:

- N/A

Change summary

crates/git_graph/src/git_graph.rs | 5 +++++
1 file changed, 5 insertions(+)

Detailed changes

crates/git_graph/src/git_graph.rs 🔗

@@ -620,6 +620,9 @@ impl GitGraph {
 
         if let Some(repository) = project.read(cx).active_repository(cx) {
             repository.update(cx, |repository, cx| {
+                // This won't overlap with loading commits from the repository because
+                // we either have all commits or commits loaded in chunks and loading commits
+                // from the repository event is always adding the last chunk of commits.
                 let commits =
                     repository.graph_data(log_source.clone(), log_order, 0..usize::MAX, cx);
                 graph.add_commits(commits);
@@ -688,6 +691,8 @@ impl GitGraph {
             }
             _ => {}
         }
+
+        cx.notify();
     }
 
     fn render_badge(&self, name: &SharedString, accent_color: gpui::Hsla) -> impl IntoElement {