Skip to content

Commit

Permalink
Fixed bug with row container rendering.
Browse files Browse the repository at this point in the history
  • Loading branch information
colintucker committed Apr 20, 2018
1 parent eb4c483 commit c969cd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Grid/Row.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,9 @@ public function renderContainer($content = null)
if ($this->UseContainer) {

return sprintf(
"<div class=\"%s\">\n%s</div>\n",
"<div class=\"%s\">\n<div class=\"%s\">\n%s</div>\n</div>\n",
$this->getContainerClass(),
$this->getHTMLClass(),
$content
);

Expand Down

0 comments on commit c969cd8

Please sign in to comment.