Skip to content

Commit

Permalink
style(ui): add action content (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
ycjcl868 authored Jan 24, 2025
1 parent 9db3f70 commit 17398f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/renderer/src/components/ThoughtChain/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ const ThoughtStepCard = ({ step, borderRadius }: ThoughtStepCardProps) => {
Action: {step.action_type}
{step.action_inputs?.start_box &&
`(start_box: ${step.action_inputs.start_box})`}
{Boolean(step.action_inputs?.content) &&
`(${step.action_inputs.content})`}
{Boolean(step.action_inputs?.key) &&
`(${step.action_inputs.key})`}
</Text>
</HStack>
</Box>
Expand Down

0 comments on commit 17398f5

Please sign in to comment.