We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3027b commit b33f19eCopy full SHA for b33f19e
cli/src/components/agent-branch-item.tsx
@@ -219,21 +219,22 @@ export const AgentBranchItem = memo((props: AgentBranchItemProps) => {
219
220
{isCollapsed ? (
221
showCollapsedPreview ? (
222
- <box
+ <Button
223
style={{
224
paddingLeft: 1,
225
paddingRight: 1,
226
paddingTop: 0,
227
paddingBottom: 0,
228
}}
229
+ onClick={onToggle}
230
>
231
<text
232
fg={isStreaming ? theme.foreground : theme.muted}
233
attributes={getAttributes(TextAttributes.ITALIC)}
234
235
{isStreaming ? streamingPreview : finishedPreview}
236
</text>
- </box>
237
+ </Button>
238
) : null
239
) : (
240
<box
0 commit comments