fix: [helper:bootstrap] Correctly close div if tab option is supplied

pull/37/head
mokaddem 2020-12-08 09:19:38 +01:00
parent 332c4f48a2
commit 39cbd8934a
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ class BootstrapTabs extends Helper
$html .= $this->genContent(); $html .= $this->genContent();
if ($this->options['card']) { if ($this->options['card']) {
$html .= '</div>'; $html .= '</div>';
$html .= '</div>';
} }
return $html; return $html;
} }