Skip to content

Commit

Permalink
feat(blocks): fix output divider bar being in the wrong place (#8385)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bentlybro authored Oct 21, 2024
1 parent e4a9c82 commit 9f4be6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpt_platform/frontend/src/components/NodeOutputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export default function NodeOutputs({
<strong className="mr-2">Pin:</strong>
<span>{beautifyString(pin)}</span>
</div>
<Separator.Root className="my-4 h-[1px] bg-gray-300" />
<div className="mt-2">
<strong className="mr-2">Data:</strong>
<div className="mt-1">
Expand All @@ -37,6 +36,7 @@ export default function NodeOutputs({
</React.Fragment>
))}
</div>
<Separator.Root className="my-4 h-[1px] bg-gray-300" />
</div>
</div>
))}
Expand Down

0 comments on commit 9f4be6f

Please sign in to comment.