Hi ,marcelovani
I get that error as well, Drupal 10.4 and PIEF 1.1.0-beta4. Not a fresh install. But grepping I can't find any other instance of this attribute key in modules or core. In the design, where would this attribute be populated? The closest attribute key in entity_embed would be the ''data-entity-uuid" key which is present in the 1.x and 2.x branches. But I'm not sure that would do what was intended, so I can't say a simple key replacement there would help to trigger the refresh intended in the alter hook function.
the key is presumed to be populated in the .module file here:
function paragraphs_inline_entity_form_entity_embed_values_alter(array &$values, ContentEntityInterface $entity): void {
// Add dummy value to trigger a refresh of the embedded content preview.
$values['attributes']['alt'] = $values['attributes']['data-editor-embed-uuid'];
}
Thank you!
Here is the #6 patch adjusted for 8.x-1.0-rc17
Thank you all. Thanks GaΓ«lG and codechefmarc for #6 and #8. I got far with these!
I needed to patch Plugin/Field/FieldWidget/MenuItemExtrasViewModeSelectorSelect.php to work with link view modes on node add and edit forms. The widget was picking up the node storage view modes rather than the menu_link_content view modes given to us by extras. This change seems to work in node forms and menu forms, hopefully others can confirm.
Sorry! I retraced my steps, and I can share a separate issue, which may not apply to your case. I should note that this patch doesn't solve a problem I have with compound class config lines - I will address these in another ticket if I get to it. In addition to the patch, I needed to separate my class toggles.
If I have one toggle for 'a.btn|Button' and a separate config line for 'a.btn--small|Button Added Styling Small' these work with the patch, using d9.5.11/ckeditor_link_styles v1.0.1. Even as a single toggle, I could not get a configuration with 'a.btn.btn--small' on a single line to be recognized after saving a node.
This patch shows changes required by the ck5 v29 1.0 Matcher pattern update
slattery β created an issue.
slattery β created an issue.