Entity Reference Content Validation

Created on 26 March 2025, 10 days ago

Getting error while removing the first value field for entity reference content

  • Created Block type called Carousel tiles
  • Added field, Reference by Content by labelling "Carousel Items (Up to 8)"
  • Allowed number of values limited to 8
  • Type of item to reference "content"
  • Required Field enabled for this field
  • Reference method selected as default
  • Content type selected as page, article
  • Enabled modules Layout Builder
  • Go to content type select layout in manage display
  • edit the content and select layout try to add the carousel tiles block
  • Add the Carousel Items (Up to 8) and try to remove the first value
  • we will get error Carousel Items (Up to 8) (value 1) field is required.

Proposed resolution

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

🐛 Bug report
Status

Active

Version

10.4

Component

entity_reference.module

Created by

🇮🇳India maheshv Bangalore

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @maheshv
  • 🇮🇳India maheshv Bangalore
  • 🇮🇳India maheshv Bangalore
  • 🇮🇳India maheshv Bangalore
  • 🇮🇳India maheshv Bangalore
  • 🇮🇳India AditiVB

    @maheshv as the reference field is required and limit is set to 4 so if we delete any item from that then it will obvioulsly show error as required field is missing .

  • I was able to reproduce the described behavior. I noticed that only the first input in the list is being treated as required. So, even if I reorder the list, the error still occurs. Ideally, the field should only be required if none of the inputs in the list are filled out.


  • I've been investigating this issue in detail and would like to suggest a minimal change that seems to resolve the underlying problem effectively, with minimal impact.

    The line 454 in /core/lib/Drupal/Core/Field/WidgetBase.php::formSingleElement() that sets `#required` only on the first item:

    // Only the first widget should be required.
    '#required' => $delta == 0 && $this->fieldDefinition->isRequired(),
    

    ...is likely intended as a fallback to trigger validation when no custom validation is applied. However, in practice — especially for multi-value entity_reference fields using the Autocomplete widget — this causes incorrect validation behavior:

    • * If the field is marked as required and multiple values are allowed
    • * And the first item is cleared by the user (but others are filled in)
    • * The form still throws a "field is required" error, even though a valid value exists

    By simply changing that line to

    '#required' => FALSE,
    

    ..Drupal defers validation to the field-level constraints (e.g., NotNull or custom ones), which correctly validate whether the field as a whole is empty.

    This adjustment results in the expected behavior:

    • * The form allows submission as long as any value is provided
    • * If no value is provided, the form still fails with an appropriate validation error

    I’ve tested this change in both new and edit form submissions, and it seems to produce more intuitive behavior without side effects.

    Open question:

    Is there a deeper reason for this #required line to exist — perhaps to support FAPI-only field types or single-value widgets?

    If there are edge cases relying on this, perhaps a conditional fallback could be used instead.

    Otherwise, I’d suggest removing the #required here and leaving validation with the constraints system, which appears to handle this more reliably and consistently.

  • 🇺🇸United States smustgrave

    Don't see anything to review so moving back to active.

Production build 0.71.5 2024