summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorKeryn Knight <keryn@kerynknight.com>2021-12-29 06:59:45 +0000
committerGitHub <noreply@github.com>2021-12-29 07:59:45 +0100
commitd5f2d5d6041d477fc8f5fc53c20112e07ef104fc (patch)
tree2aa0a7961bd36bbf4c1ecd1e4a9476c24ffd26dc /django
parent950d697b95e66deb3155896e0b619859693bc8c6 (diff)
Fixed wrapping of long values in technical 500 debug page.
Diffstat (limited to 'django')
-rw-r--r--django/views/templates/technical_500.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/templates/technical_500.html b/django/views/templates/technical_500.html
index 5ace2a136f..a0f65eb162 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; }