Same issue here, when I try to add a new field on a Paragraph I get that Assertion error. I can confirm the Patch #2 works on Drupal core 10.2.3. After apply that patch I can add new fields whitout a problem. Thanks mkrizaj
Found an issue with request which trow the following error:
Symfony\Component\HttpKernel\Exception\BadRequestHttpException: Input value "data" contains a non-scalar value. in Symfony\Component\HttpKernel\HttpKernel->handle() (line 83 of /var/www/html/vendor/symfony/http-kernel/HttpKernel.php).
So for this I refactored the way how is obtained the keywords parameter on the request, so it first get all paramenters and then validate if the keyword exist.
so from:
$keywords = $fm->request->request->get('data')['keywords'];
To:
$receivedData = $fm->request->request->all();
$data = $receivedData['data'];
$keywords = '';
if (is_array($data) && isset($data['keywords'])) {
$keywords = $data['keywords'];
}
This on the current fork.
Yhea the 159 patch is working for me as well. Didnt work on the dev version but it does on the 4.0.0-alpha5 on Drupal 10.2.3
Seems if i uninstall and active the externalauth before I made the update it didnt work, but if I uninstall it and install it with a config import it does work so the authomap is created.
nexonOSX β created an issue.
There is another branch created for this some moths ago, it has a fork with a composer.json file inluded. https://git.drupalcode.org/issue/menu_attributes-2174435/-/tree/2174435-...
I had same issue but in my case was a wrong template content I was using just {element}. So after I change to the proper webform strucuture it works:
{{ title_prefix }}{{ children }}
{{ title_suffix }}
This seems is already fixed on dev branch. views_filters_summary:2.0.x-dev
nexonOSX β created an issue.
nexonOSX β made their first commit to this issueβs fork.
nexonOSX β made their first commit to this issueβs fork.
I ran some tests more, seems everything is working :).
Awesome I had tested but as I am using it as a composer dependency there are a few issues on the composer.json, I removed the core requirement which is no longer required. ( https://www.drupal.org/node/2514612#core-compatibility β ). Also there is an error on the composer.json file which prevents to make the proper requirement of this module. On the "require part"
"require": {
"drupal/core": "^8.8 || ^9",
"drupal/hook_post_action": "^1",
"drupal/redirect": "^1'"
},
The "drupal/redirect": "^1'" has an extra character. I had removed it from the fork and seems the composer let me install it but still showing the error I think because the main branch still has it.
"Skipped branch 1.0.x, Could not parse version constraint ^1': Invalid version string "^1'""
I will test more in a few.
nexonOSX β created an issue.
I had added the composer.json to the fork so we can requiere the module using composer.
nexonOSX β made their first commit to this issueβs fork.
The patch #4 had a typo error, here the fixed one.
I leave here a patch to make that change on the EntityTasksBlock.php file.
nexonOSX β created an issue.
nexonOSX β made their first commit to this issueβs fork.
This is a Facets 3 Ported version of https://www.drupal.org/files/issues/2020-09-09/facets-3013702-34.patch β . The related issue have a lot more work, I just pick this old patch version because its simplicity and because don't need the facets_summary module.
nexonOSX β created an issue.
nexonOSX β made their first commit to this issueβs fork.
nexonOSX β made their first commit to this issueβs fork.
nexonOSX β made their first commit to this issueβs fork.
I had some errors with the last #36 patch so I made a new one for version 2.0.0-alpha1 on Drupal core 9.5.3
Seems the issue still on version 1.0.2 and Domain 8.x-1.0-beta7 on Drupal 9.5.3, until the last version is not released we will need to use this patch.