From 2eda16cb8997e5f6b8be66cbaf236dca130d60cc Mon Sep 17 00:00:00 2001 From: bun913 Date: Sat, 28 Feb 2026 14:31:42 +0900 Subject: [PATCH] fix: truncate row --- src/play/tui/LeftPanel.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/play/tui/LeftPanel.tsx b/src/play/tui/LeftPanel.tsx index 7e8f840..6fd8437 100644 --- a/src/play/tui/LeftPanel.tsx +++ b/src/play/tui/LeftPanel.tsx @@ -86,6 +86,7 @@ export function LeftPanel({ return ( @@ -99,11 +100,11 @@ export function LeftPanel({ const tc = item.testCase; const execStatus = tc.execution.status; const marker = execStatus && execStatus !== "Not Executed" ? "●" : "○"; - const displayName = tc.name.length > 25 ? `${tc.name.slice(0, 22)}...` : tc.name; return ( @@ -111,7 +112,7 @@ export function LeftPanel({ {marker} {" "} - {tc.key} {displayName} + {tc.key} {tc.name} {" "} {statusLabel(execStatus)}