Skip to content

Commit

Permalink
💄 style: fix the scrolling of the return result area of function call…
Browse files Browse the repository at this point in the history
…ing (#3295)
  • Loading branch information
HansKing98 authored Jul 23, 2024
1 parent 2c14fef commit 9c8f469
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const PluginResult = memo<FunctionMessageProps>(({ content }) => {
}

return (
<Highlighter language={'json'} style={{ maxHeight: 200, maxWidth: 800 }}>
<Highlighter language={'json'} style={{ maxHeight: 200, maxWidth: 800, overflow: 'scroll' }}>
{data}
</Highlighter>
);
Expand Down

0 comments on commit 9c8f469

Please sign in to comment.