Skip to content

Commit

Permalink
cove_rdls/templates/cove_rdls/validation_table.html: Fix required fie…
Browse files Browse the repository at this point in the history
…ld formatting
  • Loading branch information
Ed (ODSC) committed Sep 3, 2023
1 parent 5ded90b commit b499a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cove_rdls/templates/cove_rdls/validation_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{% elif errors.0.validator == "exclusiveMinimum" %}
<strong><code>{{ errors.0.path_ending}}</code> is less than or equal to the mininum value of {{ errors.0.validator_value }}.</strong>
{% elif errors.0.validator == "required" %}
<strong><code>Required field {{ errors.0.extra.required_key_which_is_missing }}</code> is missing. Your data must contain the required fields specified in the schema. Check that the field is present and not mispelled.</strong>
<strong>Required field <code>{{ errors.0.extra.required_key_which_is_missing }}</code> is missing. Your data must contain the required fields specified in the schema. Check that the field is present and not mispelled.</strong>
{% elif errors.0.validator == "maximum" %}
<strong><code>{{ errors.0.path_ending}}</code> is greater than the maximum value of {{ errors.0.validator_value }}.</strong>
{% elif errors.0.validator == "minimum" %}
Expand Down

0 comments on commit b499a27

Please sign in to comment.