diff options
| author | David Smith <smithdc@gmail.com> | 2020-09-25 09:46:15 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-09-25 18:31:14 +0200 |
| commit | ab8eccf54f52c23cd322adda3cf52617749bf14b (patch) | |
| tree | 17785bb5e5ed3ad19f64c23e39533d48d0e7562e /docs/ref | |
| parent | b7df7de44f03b569d223ed6f2c6698b7f039d38f (diff) | |
[3.1.x] Fixed empty values of forms.JSONField and forms.UUIDField in docs.
Backport of e6d77e6515b297519a565b0e3b85f34c6598bb71 from master
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/forms/fields.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index 4a479bf5e2..6853e1dadb 100644 --- a/docs/ref/forms/fields.txt +++ b/docs/ref/forms/fields.txt @@ -787,7 +787,7 @@ For each field, we describe the default widget used if you don't specify :class:`~django.db.models.JSONField`. * Default widget: :class:`Textarea` - * Empty value: ``''`` (an empty string) + * Empty value: ``None`` * Normalizes to: A Python representation of the JSON value (usually as a ``dict``, ``list``, or ``None``), depending on :attr:`JSONField.decoder`. * 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) * Default widget: :class:`TextInput` - * Empty value: ``''`` (an empty string) + * Empty value: ``None`` * Normalizes to: A :class:`~python:uuid.UUID` object. * Error message keys: ``required``, ``invalid`` |
