Produkttitel / Produktname um Variantenoption ergänzen

Hallo zusammen,

wir haben seit heute Shopware 6.6.4 im Einsatz.
Zuvor hatten wir den Produkttitel um die Variantenoption ergänzt.
Das ganze habe ich in @Storefront/storefront/page/product-detail/headline.html.twig so umgesetzt:

<h1 class="product-detail-name"
	itemprop="name">
	{{ page.product.translated.name }} {% if page.product.variation %}- {% for variation in page.product.variation %} {{ variation.option }} {% if page.product.variation|last != variation %}{{ " | " }} {% endif %} {% endfor %} {% endif %}
</h1>

Heute ist mir aufgefallen das die Variantenoption nicht mehr im Produkttitel erscheint.

Was mich jetzt wundert ist, dass sich der Block und das Verzeichnis in dem der Produkttitel stand laut Shopware-Tools auf <!-- BLOCK BEGIN element_product_name_inner (vendor/shopware/storefront/Resources/views/storefront/element/cms-element-product-name.html.twig) --> geändert hat.

Ich stelle mir nun die Frage, seit wann es da eine Änderung gab und wie ich die Variantenoption in den Produkttitel bekomme, denn in der
\vendor\shopware\storefront\Resources\views\storefront\element\cms-element-product-name.html.twig
gibt es die Variable {{ page.product.translated.name }} nicht mehr.

Ich bin absolut kein Profi.
Habe es duchr probieren wie folgt umgesetzt.

 {% block element_product_name_inner %}
                {% if config.content.isStatic %}
                    <span itemprop="name">
                        {{ element.data.content|raw }}
                    </span>
                {% else %}
                    <h1 class="product-detail-name" itemprop="name">
                        {{ element.data.content|raw }} {% if page.product.variation %}- {% for variation in page.product.variation %} {{ variation.option }} {% if page.product.variation|last != variation %}{{ " | " }} {% endif %} {% endfor %} {% endif %}
                    </h1>
                {% endif %}
            {% endblock %}