mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added colspan support to TableHead
refs https://github.com/TryGhost/Product/issues/4024
This commit is contained in:
parent
e7b1d7afa9
commit
3bc6d331e9
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ import Heading from './Heading';
|
|||
import React, {HTMLProps} from 'react';
|
||||
import clsx from 'clsx';
|
||||
|
||||
const TableHead: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, children, ...props}) => {
|
||||
const TableHead: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, children, colSpan, ...props}) => {
|
||||
const tableCellClasses = clsx(
|
||||
'!py-2 !pl-0 !pr-6 text-left align-top',
|
||||
props.onClick && 'hover:cursor-pointer',
|
||||
|
@ -10,7 +10,7 @@ const TableHead: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, childr
|
|||
);
|
||||
|
||||
return (
|
||||
<th className={tableCellClasses} {...props}>
|
||||
<th className={tableCellClasses} colSpan={colSpan} {...props}>
|
||||
<Heading className='whitespace-nowrap' level={6}>{children}</Heading>
|
||||
</th>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue