Skip to content

Commit

Permalink
showing 200 lines of sample data in vul report output
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoBeeAkto committed Jan 7, 2025
1 parent 4b3542c commit bb8bdec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const HttpRequestResponseViewer = ({ data }) => {
<LegacyCard>
<Box padding={3} borderRadius='2'>
<Text>Request</Text>
<Box style={{maxHeight: '500px', overflowY: 'scroll'}} overflowY='scroll'>
<Box style={{maxHeight: '4000px', overflowY: 'scroll'}} overflowY='scroll'>
<SyntaxHighlighter lineProps={{style: {whiteSpace: 'pre-wrap'}}} wrapLongLines={true} showLineNumbers={true} language="http" style={coy}>
{formattedRequest}
</SyntaxHighlighter>
Expand All @@ -31,7 +31,7 @@ const HttpRequestResponseViewer = ({ data }) => {
<LegacyCard>
<Box padding={3} borderRadius='2'>
<Text>Response</Text>
<Box style={{maxHeight: '500px', overflowY: 'scroll'}} overflowY='scroll'>
<Box style={{maxHeight: '4000px', overflowY: 'scroll'}} overflowY='scroll'>
<SyntaxHighlighter lineProps={{style: {whiteSpace: 'pre-wrap'}}} wrapLongLines={true} showLineNumbers={true} language="http" style={coy}>
{formattedResponse}
</SyntaxHighlighter>
Expand Down

0 comments on commit bb8bdec

Please sign in to comment.