From 50edbe6f46aec03237b9225935250fb1d072243a Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Tue, 28 Apr 2026 15:49:35 -0500 Subject: [PATCH] review(copilot): say solid rule, not dashed --- ui-tui/src/components/markdown.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui-tui/src/components/markdown.tsx b/ui-tui/src/components/markdown.tsx index e22eb5bb1d..9c18086147 100644 --- a/ui-tui/src/components/markdown.tsx +++ b/ui-tui/src/components/markdown.tsx @@ -102,8 +102,9 @@ const renderTable = (k: number, rows: string[][], t: Theme) => { // (#15534). We avoid full borders on purpose — column widths come // from `stripInlineMarkup(...).length` (UTF-16 code units, not // display width), so a real outline often misaligns on emoji and - // East-Asian wide characters; one dim dashed rule under row 0 plus - // tab-style column gaps reads cleanly on every terminal we tested. + // East-Asian wide characters; one dim solid rule (`─`) under row 0 + // plus tab-style column gaps reads cleanly on every terminal we + // tested. const sep = widths.map(w => '─'.repeat(Math.max(1, w))).join(' ') return (