From 03082bdb0e5ca07c3e611958d0f15bc4b6a88a6e Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Thu, 10 Oct 2024 12:12:33 +0200 Subject: [PATCH] keep 0 margin as before --- packages/html-reporter/src/links.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/html-reporter/src/links.tsx b/packages/html-reporter/src/links.tsx index cf21d73518..88891a9c7c 100644 --- a/packages/html-reporter/src/links.tsx +++ b/packages/html-reporter/src/links.tsx @@ -87,7 +87,7 @@ export const AttachmentLink: React.FunctionComponent<{ : {linkifyText(attachment.name)} )} } loadChildren={attachment.body ? () => { - return [
{linkifyText(attachment.body!)}
]; + return [
{linkifyText(attachment.body!)}
]; } : undefined} depth={depth ?? 0} style={{ lineHeight: '32px' }}>; };