The patch #42 from tbenice works for me :
https://www.drupal.org/project/drupal/issues/2840283#comment-13515227
🐛
Problem with action path for embedded forms
Needs work
Why not overwrite the views.view.watchdog.yml with the default one from D10 by example and import it :
https://api.drupal.org/api/drupal/core%21modules%21dblog%21config%21opti...
Maybe a solution is to edit each block yaml configuration files and remove manually all others visibility condition,
then import configuration.
visibility:
condition_group:
id: condition_group
negate: false
context_mapping: { }
block_visibility_group: not_this_content_type
Hello,
It is possible to load the css with a hook :
/**
* Implements hook_library_info_alter().
*/
function mymodule_library_info_alter(array &$libraries, $extension) {
if ($extension === 'ckeditor5' && isset($libraries['internal.drupal.ckeditor5'])) {
$libraries['internal.drupal.ckeditor5']['dependencies'][] = 'mymodule/ckeditor5_stylesheets';
}
}
Hello,
I update the patch from #17 on my Drupal 9.5 + Calendar Beta 1 and the ajax pager in my views block is working fine.
Here is a patch to fix this error.
Flodevelop → created an issue.