fix(tui): show elapsed time for running shell tools (#1026)

This commit is contained in:
paulbettner
2026-02-18 23:01:47 -05:00
committed by GitHub
parent 943c20a495
commit 674e8c12c2
2 changed files with 8 additions and 16 deletions

View File

@@ -68,6 +68,13 @@ export const StreamingOutputDisplay = memo(
{" "} +{hiddenCount} more lines ({elapsed}s){interruptHint}
</Text>
)}
{/* Always show elapsed while running, even if output is short */}
{hiddenCount === 0 && (
<Text dimColor>
{" "}({elapsed}s){interruptHint}
</Text>
)}
</Box>
);
},