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
- Configure Exclude Node Title on any content type
- Run
drush config:import -y
- Observe the schema warning for
exclude_node_title.settings:nid_list missing schema
Comments