- Issue created by @kumkum29
- 🇫🇷France kumkum29
same problem in this issue https://www.drupal.org/project/entity_embed/issues/3416512 🐛 Trying to edit embedded entities causes uncaught exception Needs review
- 🇫🇷France kumkum29
After analyse, i see that the edit entity button is built with this code :
editor.ui.componentFactory.add('editEmbeddedEntity', (locale) => { let buttonView = new ButtonView(locale); buttonView.set({ isEnabled: true, label: Drupal.t('Edit the embedded entity (opens in new tab)'), icon: icons.cog, tooltip: true, });
How can I easily hide this button ? (value isEnabled > false ? )
Thanks.
- 🇫🇷France kumkum29
Hello,
I tried to remove the component 'edit embedded entity' to simplify the interface without success. Here is my code, in a custom JS (attached in module library).
if (componentFactory.has('editEmbeddedEntity')) { // Remove the 'editEmbeddedEntity' component. console.log('Remove component'); componentFactory._components.delete('editembeddedentity'); }
However, I can clearly see the console log message but the component (edit embedded entity) is not removed when I click on the entity embed.
Thanks for your help.