Wie füge ich Inhalte in eine Zeilenposition nach Shopware 6.5.4.0 ohne RequestStacks ein?

Seit dem Update auf Shopware 6.5.4.0 funktioniert es anscheinend nicht mehr, Inhalte mit RequestStacks in das Nutzlast einer Zeilenposition einzufügen.

Früher habe ich folgenden Code-Schnipsel verwendet:

htmlCopy code

<label class="form-label" for="product-instruction-{{ product.id }}"></label>
<input type="text"
       placeholder="Zusätzliche Anweisung"
       id="product-instruction-{{ product.id }}"
       name="lineItems[{{ product.id }}][payload][instruction]"
       class="form-control"
/>

Nach dem Update auf 6.5.4.0 wird jedoch der Fehler ausgegeben:

mb_strlen(): Argument #1 ($string) muss vom Typ String sein, Shopware\Core\Framework\Validation\DataBag\RequestDataBag wurde übergeben

Gibt es eine alternative Methode oder einen Workaround, um das gleiche Ergebnis zu erzielen?