From 8c297418308057ccebf6eeafa950150925886101 Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Mon, 9 Feb 2026 13:08:42 +0000 Subject: [PATCH] feat(ui): render session changes list in one line Show each changed file as a single-line row with end-truncated path and right-aligned +additions/-deletions stats for better scanning. --- .../components/instance/instance-shell2.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/packages/ui/src/components/instance/instance-shell2.tsx b/packages/ui/src/components/instance/instance-shell2.tsx index 23005b9d..5e2ed131 100644 --- a/packages/ui/src/components/instance/instance-shell2.tsx +++ b/packages/ui/src/components/instance/instance-shell2.tsx @@ -1005,12 +1005,18 @@ const InstanceShell2: Component = (props) => { {(item) => (
-
- {item.file} -
-
- {`+${item.additions}`} - {`-${item.deletions}`} +
+
+ {item.file} +
+
+ {`+${item.additions}`} + {`-${item.deletions}`} +
)}