My apologies for my confusions, the problem is related to the "Plasma integration" chrome extension. https://chromewebstore.google.com/detail/plasma-integration/cimiefiiaegb...
I can reproduce the issue in a fresh Drupal 10.3.6 install. Also, I agree that the problem is probably related to their JS library.
dxx → created an issue.
Thanks for the v2.1 just released which brings compatibility with CaptchEtat v2. This issue can now be closed.
By default a block type don't have a status field. What do you mean?
The field_group module only require the field_group_accordion
if you use the accordion or accordion_item
anywhere in your configuration.
Since your are updated your configuration (display views) to remove any usage of format_type: accordion
or format_type: accordion_item
, you can safety do the following to remove this deprecated modules (if you no longer use `jquery_ui`):
drush pmu jquery_ui
drush pmu jquery_ui_accordion
composer remove drupal/jquery_ui_accordion drupal/jquery_ui
If your field is not a reference to another entity, check that your field ItemList class extends the FieldItemList
and not the EntityReferenceFieldItemList
.
Also, in the same class, check your computeValue()
method to ensure that the createItem()
method is called with the right value (eg not an object).