- Issue created by @jpieper
- πΊπΈUnited States jpieper
Update on this one. I believe this is related to my team's use of twig includes.
For instance, this paragraph is lost on save. You can add it via the frontend editor, customize it, and it'll appear just fine up until the point you click the save button. Then it just disappears without any error or log message:
{% set classes = [ 'paragraph', 'paragraph--type--' ~ paragraph.bundle|clean_class, view_mode ? 'paragraph--view-mode--' ~ view_mode|clean_class, ] %} <div{{ attributes.addClass(classes) }}> {% include "@organisms/cta-bar/full-width-cta.twig" with { title: content.field_title.0, ... } %} </div>
If I remove the `include` and switch to `{{ content }}` it works just fine. From what I can tell it's adhering to the requirements in the " Note for Themers" section on this page β .
- πΊπΈUnited States jpieper
I'm closing this as everything works as it should.
In case anyone else using includes in their Twig templates runs into this this issue was solved by including `only` in your include statements to prevent attributes from being available to all sub-templates.
{% set classes = [ 'paragraph', 'paragraph--type--' ~ paragraph.bundle|clean_class, view_mode ? 'paragraph--view-mode--' ~ view_mode|clean_class, ] %} <div{{ attributes.addClass(classes) }}> {% include "@organisms/cta-bar/full-width-cta.twig" with { title: content.field_title.0, ... } only %} </div>