Skip to content

Commit 60eadee

Browse files
author
Daniel Herzog
committed
(Additional) fix for DFL-3299: Request body can stretch the header table
1 parent 923dffd commit 60eadee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/network/network_details_templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ templates._request_body = function(req, do_raw)
351351
var type = cls.ResourceUtil.mime_to_type(req.requestbody.mimeType);
352352
if (["markup", "script", "css", "text"].contains(type))
353353
{
354-
ret.push(["pre", req.requestbody.content.stringData]);
354+
ret.push(["pre", req.requestbody.content.stringData, "class", "mono network-body"]);
355355
}
356356
else
357357
{

0 commit comments

Comments
 (0)