From d5f2d5d6041d477fc8f5fc53c20112e07ef104fc Mon Sep 17 00:00:00 2001 From: Keryn Knight Date: Wed, 29 Dec 2021 06:59:45 +0000 Subject: [PATCH] Fixed wrapping of long values in technical 500 debug page. --- django/views/templates/technical_500.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/views/templates/technical_500.html b/django/views/templates/technical_500.html index 5ace2a136f9..a0f65eb1626 100644 --- a/django/views/templates/technical_500.html +++ b/django/views/templates/technical_500.html @@ -27,7 +27,7 @@ table.vars { margin:5px 0 2px 40px; } table.vars td, table.req td { font-family:monospace; } table td.code { width:100%; } - table td.code pre { overflow:hidden; } + table td.code pre { overflow:hidden; word-break: break-word; } table.source th { color:#666; } table.source td { font-family:monospace; white-space:pre; border-bottom:1px solid #eee; } ul.traceback { list-style-type:none; color: #222; }