From fdc025d66a05af777997a8e17479623b0e58adf2 Mon Sep 17 00:00:00 2001 From: olav Date: Tue, 16 Aug 2022 12:57:55 +0200 Subject: [PATCH] fix: wrap long lines in event JSON (#1220) --- frontend/src/component/events/EventJson/EventJson.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/events/EventJson/EventJson.tsx b/frontend/src/component/events/EventJson/EventJson.tsx index 720f93ae50..eabeef49f2 100644 --- a/frontend/src/component/events/EventJson/EventJson.tsx +++ b/frontend/src/component/events/EventJson/EventJson.tsx @@ -13,7 +13,7 @@ export const StyledJsonListItem = styled('li')(({ theme }) => ({ '& code': { wordWrap: 'break-word', - whiteSpace: 'pre', + whiteSpace: 'pre-wrap', fontFamily: 'monospace', lineHeight: '100%', },