Skip to content

Commit 90020d2

Browse files
MC-3699: Static Test Failure
- fix character length of line
1 parent fc4b798 commit 90020d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/PageBuilder/Setup/DataConverter/Renderer/AccordionItem.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public function render(array $itemData, array $additionalData = []) : string
6161
foreach ($rootElementAttributes as $attributeName => $attributeValue) {
6262
$rootElementHtml .= $attributeValue !== '' ? " $attributeName=\"$attributeValue\"" : '';
6363
}
64-
$rootElementHtml .= '><div class="switch" data-role="trigger"><span>' . $eavData['title'] . '</span></div></div>'
65-
. '<div data-content="true" class="item content">' . $eavData['textarea'] . '</div>';
64+
$rootElementHtml .= '><div class="switch" data-role="trigger"><span>' . $eavData['title']
65+
. '</span></div></div><div data-content="true" class="item content">' . $eavData['textarea'] . '</div>';
6666

6767
return $rootElementHtml;
6868
}

0 commit comments

Comments
 (0)