Skip to content

Commit

Permalink
Bugfix/Hide agent response for chatflow (#3729)
Browse files Browse the repository at this point in the history
fix: hide agent response for chatflow
  • Loading branch information
richersoon authored Dec 18, 2024
1 parent 2360f5f commit bb15e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/views/chatflows/ShareChatbot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ const ShareChatbot = ({ isSessionMemory, isAgentCanvas }) => {
{colorField(backgroundColor, 'backgroundColor', 'Background Color')}
{textField(fontSize, 'fontSize', 'Font Size', 'number')}
{colorField(poweredByTextColor, 'poweredByTextColor', 'PoweredBy TextColor')}
{booleanField(showAgentMessages, 'showAgentMessages', 'Show Agent Reasoning')}
{isAgentCanvas && booleanField(showAgentMessages, 'showAgentMessages', 'Show Agent Reasoning')}

{/*BOT Message*/}
<Typography variant='h4' sx={{ mb: 1, mt: 2 }}>
Expand Down

0 comments on commit bb15e5c

Please sign in to comment.