Skip to content

Commit

Permalink
Added form fieldset before html to \Magento\Framework\Data\Form\Eleme…
Browse files Browse the repository at this point in the history
…nt\Fieldset in getElementHtml() method
  • Loading branch information
Vasilii Burlacu committed Nov 1, 2018
1 parent 38bc4bf commit 6629445
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public function __construct(
*/
public function getElementHtml()
{
$html = '<fieldset id="' . $this->getHtmlId() . '"' . $this->serialize(
$html = $this->getBeforeElementHtml();
$html .= '<fieldset area-hidden="false" id="' . $this->getHtmlId() . '"' . $this->serialize(
['class']
) . $this->_getUiId() . '>' . "\n";
if ($this->getLegend()) {
Expand Down

0 comments on commit 6629445

Please sign in to comment.