summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNeeraj Kumar <sainineeraj1234@gmail.com>2023-06-07 02:13:57 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-11 19:28:50 +0200
commit9e9a286bed4757b6f7ed2b6d5f0296203d99a15f (patch)
treea33e0be6eb59bab871052647a75fc0a79a1e8824 /docs
parent31d1fc36b3ae67d51afe718125fc6413e30dd565 (diff)
[4.2.x] Fixed #34638 -- Fixed admin change list selected row highlight on editable boolean fields.
Regression in 0aa2f16e63887d6053f6fd0da19254fc74c750ae. Thanks Andrei Shabanski for the report. Backport of 1d9d32389c652edc56ada65116d39789896f4820 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.2.3.txt b/docs/releases/4.2.3.txt
index 66d6611b36..4ab29b0cff 100644
--- a/docs/releases/4.2.3.txt
+++ b/docs/releases/4.2.3.txt
@@ -11,3 +11,7 @@ Bugfixes
* Fixed a regression in Django 4.2 that caused incorrect alignment of timezone
warnings for ``DateField`` and ``TimeField`` in the admin (:ticket:`34645`).
+
+* Fixed a regression in Django 4.2 that caused incorrect highlighting of rows
+ in the admin changelist view when ``ModelAdmin.list_editable`` contained a
+ ``BooleanField`` (:ticket:`34638`).