I confirm this one:
Segment count field is broken. When used, breadcrumbs disappear entirely except for the home crumb
Why? Because, if your page has fewer breadcrumb segments than configured in $segment_limit
field ("Breadcrumb segment count
" field), and "Limit breadcrumb trail segments" is checked => this conditional line of code will always fail: while (count($path_elements) > $loop_limit) {
(see web/modules/contrib/easy_breadcrumb/src/EasyBreadcrumbBuilder.php:504)
Stockticker β created an issue.
+1. In my case, it's:
$form["submit"]['#states'] = [
'disabled' => [
':input[name="file_upload[fids]"]' => ['empty' => TRUE],
],
];
it stopped working after upgrading to 10.2.2.
Stockticker β created an issue.
Hmm, I think the patch provided in
https://www.drupal.org/project/drupal/issues/3368250
π
Deprecated creation of dynamic property in TypedData
Needs work
is not a proper fix, as it also brings tons of other different warnings (even errors), if you have other contrib modules installed, which extend abstract class TypedData.
Please, see the class description (of the TypedData abstract class):
* Classes deriving from this base class have to declare $value
* or override getValue() or setValue().
So, it's a matter Drupal\tablefield\TableValue to declare $value
.
Here's a new patch, it fixes both the original report issue plus the one that appears in #5.
I think this is exactly what's described in https://www.drupal.org/project/media_bulk_upload/issues/3355468 π Can not upload using core file upload element (no dropzonejs) because of false validation errors RTBC
Stockticker β created an issue.
Thanks for your comment, Greg!
Indeed, in my case, it was an issue with a custom map icon, and that icon URL had a leading slash in the path.
The help text says: "Can be an absolute or relative URL (as Drupal root folder relative paths without the leading slash)" - so it was clearly an issue on our end.
Stockticker β created an issue.
In case someone needs a patch against a 10.1.x version of the Drupal Core.
Stockticker β created an issue.
re-roll for 2.1.0, based on a patch from a #15.
And here we are, 8 months later :)
re-roll for 2.1.x, based on a patch from a #15.
Thanks for the patch! I can confirm that the same issue appears for a Domain Access module, strange that no one reported it before. The patch solves the problem.
re-roll of patch #96 for 9.5.x.