Skip to content

Commit

Permalink
fix: reformat file
Browse files Browse the repository at this point in the history
  • Loading branch information
gmoehler committed Jan 30, 2020
1 parent ecc08a9 commit 4c22775
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/react/src/components/DataTable/TableHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ const TableHeader = React.forwardRef(function TableHeader(
) {
if (!isSortable) {
return (
<th {...rest} className={headerClassName} scope={scope} colSpan={colSpan} ref={ref}>
<th
{...rest}
className={headerClassName}
scope={scope}
colSpan={colSpan}
ref={ref}>
<span className={`${prefix}--table-header-label`}>{children}</span>
</th>
);
Expand Down

0 comments on commit 4c22775

Please sign in to comment.