Skip to content

Commit 7d3d914

Browse files
committed
Fix PR #125.
1 parent 41bc61a commit 7d3d914

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Html/Column.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ public function titleAttr($value)
516516

517517
return $this;
518518
}
519-
519+
520520
/**
521521
* @return array
522522
*/

src/Html/HasTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected function compileTableHeaders()
125125
$thAttr = $this->html->attributes(array_merge(
126126
Arr::only($row, ['class', 'id', 'title', 'width', 'style', 'data-class', 'data-hide']),
127127
$row['attributes'],
128-
isset($row['titleAttr']) ? ['title' => $row['titleAttr']] : [],
128+
isset($row['titleAttr']) ? ['title' => $row['titleAttr']] : []
129129
));
130130
$th[] = '<th ' . $thAttr . '>' . $row['title'] . '</th>';
131131
}

0 commit comments

Comments
 (0)