The exclude_node_title.settings config schema is missing the nid_list property definition, which causes a schema validation warning on config import:

Schema errors for exclude_node_title.settings with the following errors:
exclude_node_title.settings:nid_list missing schema.

The nid_list key is present in the exported config (exclude_node_title.settings.yml) but is not declared in config/schema/exclude_node_title.schema.yml.

Proposed fix

Add the following to the schema mapping:

nid_list:
  type: sequence
  label: 'Node IDs to exclude'
  sequence:
    type: integer
    label: 'Node ID'

Steps to reproduce

  1. Configure Exclude Node Title on any content type
  2. Run drush config:import -y
  3. Observe the schema warning for exclude_node_title.settings:nid_list missing schema
Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

julien tekrane created an issue.