mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
build(deps): update dependencies and update relevant files
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import React, { HTMLAttributes, AllHTMLAttributes } from 'react';
|
||||
import React, { AllHTMLAttributes } from 'react';
|
||||
import { withProperties } from '../../../utils/typeHelpers';
|
||||
|
||||
const TBody: React.FC = ({ children }) => {
|
||||
@@ -20,7 +20,11 @@ const TH: React.FC<AllHTMLAttributes<HTMLTableHeaderCellElement>> = ({
|
||||
style.push(className);
|
||||
}
|
||||
|
||||
return <th className={style.join(' ')}>{children}</th>;
|
||||
return (
|
||||
<th className={style.join(' ')} {...props}>
|
||||
{children}
|
||||
</th>
|
||||
);
|
||||
};
|
||||
|
||||
interface TDProps extends AllHTMLAttributes<HTMLTableCellElement> {
|
||||
|
Reference in New Issue
Block a user