From ff19a34f30ff215705839d1e7f7b04c1a823604b Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Mon, 20 Jan 2025 00:17:33 +0530 Subject: [PATCH] Fix bounce meta JSON overflowing in the table on admin UI. Closes #1797. --- frontend/src/assets/style.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/assets/style.scss b/frontend/src/assets/style.scss index d561a2142..a33fa82af 100644 --- a/frontend/src/assets/style.scss +++ b/frontend/src/assets/style.scss @@ -799,8 +799,13 @@ section.lists { } .bounces { + tr.detail td { + max-width: 0; + } pre { padding: 5px 10px; + overflow-x: auto; + max-width: 100%; } }