Skip to content

Commit 3f3fb66

Browse files
refactor(Builder): use theadClass property getter
1 parent a07184a commit 3f3fb66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Html/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function table(array $attributes = [], bool $drawFooter = false, bool $dr
185185
? '<tr class="search-filter">'.implode('', $this->compileTableSearchHeaders()).'</tr>'
186186
: '';
187187

188-
$tableHtml .= '<thead'.($this->theadClass ?? '').'>';
188+
$tableHtml .= '<thead'.($this->getTheadClass() ?? '').'>';
189189
$tableHtml .= '<tr>'.implode('', $th).'</tr>'.$searchHtml.'</thead>';
190190

191191
if ($drawFooter) {

0 commit comments

Comments
 (0)