We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43d8d3c commit 1c3d044Copy full SHA for 1c3d044
cli/src/components/agent-branch-item.tsx
@@ -259,21 +259,16 @@ export const AgentBranchItem = ({
259
style={{
260
flexDirection: 'column',
261
gap: 0,
262
+ marginBottom: content ? 1 : 0,
263
}}
264
>
- <text fg={theme.foreground}>Prompt</text>
265
<text
266
fg={theme.foreground}
267
style={{ wrapMode: 'word' }}
268
- attributes={getAttributes()}
+ attributes={getAttributes(TextAttributes.ITALIC)}
269
270
{prompt}
271
</text>
272
- {content && (
273
- <text fg={theme.foreground} style={{ marginTop: 1 }}>
274
- Response
275
- </text>
276
- )}
277
</box>
278
)}
279
{renderExpandedContent(content)}
0 commit comments