gun_dose → created an issue.
Patch #33 has some issues for me. It operates with form values, so if I have some value in URL, uncheck it, apply filters and then check other value, both values appears checked, because form data doesn't contain value key if all options are unchecked. Also in my case I have multiple values for my filter, so in URL it appears as manufacturer[0], manufacturer[1] etc. And in form adata it appearc as manufacturer[] (with empty brakes). To handle this I splitted filter names by openig square brake and now it works for me.
Fixed
I had the same error on drush si
command. Patch from #11 fixed the problem
This is patch with the fix
gun_dose → created an issue.
The reason of this error is that module settings form uses ListItemBase::validateAllowedValues method as validation callback. But at the last versions of Drupal allowed values form of list fields was totally refactored. See this core commit https://git.drupalcode.org/project/drupal/-/commit/693ced9cd830f9b1d0942...
So to fix thie we need to either refactor module settings form to use the same approach as list fileds or copy the old validation callback to SettingsForm class. Unfortunately I can't do this because on my current froject we don't use headers settings, and in my case patch from #7 solved my problem
I don't think so, because method signature should be the same as in parent class. Originally it is defined here: https://git.drupalcode.org/project/drupal/-/blob/10.2.x/core/modules/ima...
And this is a patch to fix it
gun_dose → created an issue.
gun_dose → created an issue.
Even with the last changes this module is still not works with Drupal 10 because of usage of "jquery.once" library.
I found the same issue. When paragraph contains nested paragraphs, I can collapse paragraph form by clicking on "Edit" button on the neighbor paragraph, in this case paragraph will be collapsed and nested paragraphs will be not validate. I can save them with empty fields that are reqired.
Is there any progress? At 8.7 version all patches are not working.
I applied patch from #24 to Drupal 8.6.4 and it works fine for me. I exported node with layout to default content and imported it back and all works fine.