Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
namansleeps2 committed Jul 13, 2023
1 parent 62d6076 commit 5d95753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/pages/Content/Agents/Details.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function Details({agentDetails, runCount, goals, instructions, ag
</div>
{goals && goals.length > 0 && <div>
<div className={styles.large_text_box} style={!showGoals ? {overflow:'hidden',display:'-webkit-box'} : {}}>
{agentDetails.goal.map((goal, index) => (<div key={index} style={{marginTop:'0'}}>
{goals.map((goal, index) => (<div key={index} style={{marginTop:'0'}}>
<div>{index + 1}. {goal || ''}</div>{index !== goals.length - 1 && <br/>}
</div>))}
</div>
Expand Down

0 comments on commit 5d95753

Please sign in to comment.