Skip to content

Commit eaa5665

Browse files
authored
fix(logs): fix bad margin on pretty json text (#42275)
1 parent 9b43113 commit eaa5665

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

products/logs/frontend/LogsScene.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ function LogsTable({
289289
render: (_, { cleanBody, parsedBody }) => {
290290
if (parsedBody && prettifyJson) {
291291
return (
292-
<pre className={cn('text-xs', wrapBody ? '' : 'whitespace-nowrap')}>
292+
<pre className={cn('text-xs m-0', wrapBody ? '' : 'whitespace-nowrap')}>
293293
{JSON.stringify(parsedBody, null, 2)}
294294
</pre>
295295
)

0 commit comments

Comments
 (0)