From 08a3a8f5f5762db669c2a1b8619c263a57c54c82 Mon Sep 17 00:00:00 2001 From: Wu Yuxin Date: Mon, 4 May 2026 21:19:08 +0800 Subject: [PATCH] Update crates/tui/src/tui/markdown_render.rs Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- crates/tui/src/tui/markdown_render.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tui/src/tui/markdown_render.rs b/crates/tui/src/tui/markdown_render.rs index 7c53a457..eb826657 100644 --- a/crates/tui/src/tui/markdown_render.rs +++ b/crates/tui/src/tui/markdown_render.rs @@ -353,7 +353,7 @@ fn render_line_with_links( if !first { // The space consumed by split — attach as a plain space word // so the wrap loop can decide whether to keep or break it. - words.push((" ".to_string(), base_style)); + words.push((" ".to_string(), style)); } if !part.is_empty() { words.push((part.to_string(), style));