From c4747714c7d6c9cb98222beb10228f6fdb56504c Mon Sep 17 00:00:00 2001
From: Marco Mihai Condrache <52580954+marcocondrache@users.noreply.github.com>
Date: Fri, 23 Jan 2026 19:11:37 +0100
Subject: [PATCH] git_graph: Fix subject not wrapping (#47486)
Before:
After:
Release Notes:
- N/A
Signed-off-by: Marco Mihai Condrache <52580954+marcocondrache@users.noreply.github.com>
---
crates/git_graph/src/git_graph.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/crates/git_graph/src/git_graph.rs b/crates/git_graph/src/git_graph.rs
index fc1db52cd1b66192255e096d6ec927cee6927e85..f74d25fc6205ca3a39b098a37532d2a9b8ca9746 100644
--- a/crates/git_graph/src/git_graph.rs
+++ b/crates/git_graph/src/git_graph.rs
@@ -1116,6 +1116,7 @@ impl GitGraph {
.border_t_1()
.border_color(cx.theme().colors().border)
.p_3()
+ .min_w_0()
.child(
v_flex()
.gap_2()