- Issue created by @prudloff
When using config_readonly_menu_ui, the menu title is always locked when the configuration is readonly even if the menu config is in config_readonly_whitelist_patterns
.
Add this to settings.php
:
$settings['config_readonly'] = TRUE;
$settings['config_readonly_whitelist_patterns'] = [
'system.menu.main',
];
Browse to /admin/structure/menu/manage/main
: the menu title can't be edited.
ContentMenuForm::form()
should not add #disabled
to fields if the menu config is whitelisted.
Active
1.2
Code