summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-12-17 09:27:01 -0500
committerJacob Walls <jacobtylerwalls@gmail.com>2025-12-22 21:04:01 -0500
commit1eac2659a102d42490f9401b08782633fa51f3e3 (patch)
treefb76cc40cfa05f233305db7531655946d5e0e612 /docs/releases
parent968f3f96373e028f1486d135e38331fcd0e3a0ca (diff)
Fixed #36807 -- Fixed form field alignment under <fieldset> in the admin.
It isn't safe to set display: flex on <fieldset>, because on Safari this interferes with display: block on child divs. Thanks Paulo Coutinho for the report and Antoliny for the review. Regression in 4187da258fe212d494cb578a0bc2b52c4979ab95.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/6.0.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/6.0.1.txt b/docs/releases/6.0.1.txt
index 1580512409..790fa76e99 100644
--- a/docs/releases/6.0.1.txt
+++ b/docs/releases/6.0.1.txt
@@ -24,3 +24,6 @@ Bugfixes
* Fixed a regression in Django 6.0 that caused
:meth:`~django.db.models.query.QuerySet.bulk_create` to crash
when introspecting the connection on SQLite (:ticket:`36818`).
+
+* Fixed a visual regression in Django 6.0 for admin form fields grouped under a
+ ``<fieldset>`` in Safari (:ticket:`36807`).