Skip to content

Commit

Permalink
Merge pull request #1934 from akto-api-security/hotfix/increasing_sam…
Browse files Browse the repository at this point in the history
…ple_data_output_in_report

showing 200 lines of sample data in vul report output
  • Loading branch information
Ark2307 authored Jan 7, 2025
2 parents 4b3542c + bb8bdec commit 7c75a9a
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 7c75a9a

Please sign in to comment.