- Issue created by @pdureau
- Merge request !7Issue #3462026 by pdureau: drawer component: simpler attributes management → (Merged) created by pdureau
Automatically closed - issue fixed for 2 weeks with no activity.
Thanks to 📌 Prevent TypeError when using create_attribute Twig function Fixed , this
{% set item_attributes = item.attributes|default({}) %}
{% set item_attributes = item_attributes.storage() is defined ? item_attributes : create_attribute(item_attributes) %}
Try to replace it with:
{% set item_attributes = create_attribute(item.attributes|default({}) %}
Active
2.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.