summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorQi Zhao <zhaoqi99@outlook.com>2020-10-08 21:51:14 +0800
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-10-09 08:44:32 +0200
commit8c403b17f94a4ace87bfdd7d40bbc3afb18f7577 (patch)
tree75043715e3f00f71563717476ff7c691a42aaa20 /docs
parentb0e5e7b67153e6252bcad959ccb061402e7ecd58 (diff)
[3.1.x] Fixed #32080 -- Fixed displaying Unicode chars in forms.JSONField and read-only JSONField values in admin.
Backport of de81676b51e4dad510ef387c3ae625f9091fe57f from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.3.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/3.1.3.txt b/docs/releases/3.1.3.txt
index 853ec7a48d..e2bb2d0df3 100644
--- a/docs/releases/3.1.3.txt
+++ b/docs/releases/3.1.3.txt
@@ -11,3 +11,8 @@ Bugfixes
* Fixed a regression in Django 3.1.2 that caused the incorrect height of the
admin changelist search bar (:ticket:`32072`).
+
+* Fixed displaying Unicode characters in
+ :class:`forms.JSONField <django.forms.JSONField>` and read-only
+ :class:`models.JSONField <django.db.models.JSONField>` values in the admin
+ (:ticket:`32080`).