- Issue created by @pdureau
- Issue was unassigned.
- Status changed to Fixed
2 months ago 11:20am 3 September 2024 - Status changed to Fixed
2 months ago 7:27pm 15 September 2024
We have this:
$attributes = new Attribute($element["#attributes"]);
if (isset($element["#props"]["#attributes"])) {
$attributes = (new Attribute($element["#props"]["#attributes"]))->merge($attributes);
}
But we expect this, doesn't we?
if (isset($element["#props"]["attributes"])) {
$attributes = (new Attribute($element["#props"]["attributes"]))->merge($attributes);
}
Fixed
2.0
Code