[3.1.x] Fixed empty values of forms.JSONField and forms.UUIDField in docs.

Backport of e6d77e6515 from master
This commit is contained in:
David Smith 2020-09-25 09:46:15 +02:00 committed by Mariusz Felisiak
parent b7df7de44f
commit ab8eccf54f
1 changed files with 2 additions and 2 deletions

View File

@ -787,7 +787,7 @@ For each field, we describe the default widget used if you don't specify
:class:`~django.db.models.JSONField`. :class:`~django.db.models.JSONField`.
* Default widget: :class:`Textarea` * Default widget: :class:`Textarea`
* Empty value: ``''`` (an empty string) * Empty value: ``None``
* Normalizes to: A Python representation of the JSON value (usually as a * Normalizes to: A Python representation of the JSON value (usually as a
``dict``, ``list``, or ``None``), depending on :attr:`JSONField.decoder`. ``dict``, ``list``, or ``None``), depending on :attr:`JSONField.decoder`.
* Validates that the given value is a valid JSON. * Validates that the given value is a valid JSON.
@ -1014,7 +1014,7 @@ For each field, we describe the default widget used if you don't specify
.. class:: UUIDField(**kwargs) .. class:: UUIDField(**kwargs)
* Default widget: :class:`TextInput` * Default widget: :class:`TextInput`
* Empty value: ``''`` (an empty string) * Empty value: ``None``
* Normalizes to: A :class:`~python:uuid.UUID` object. * Normalizes to: A :class:`~python:uuid.UUID` object.
* Error message keys: ``required``, ``invalid`` * Error message keys: ``required``, ``invalid``