1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Restrict title name to be only string (#4839)

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-02-09 07:41:12 -05:00 committed by GitHub
parent d4d2da1d28
commit 15c867745f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ import type { TableCellProps } from "../table";
*/
export interface TitleCellProps {
className?: string;
title: React.ReactNode;
title: string;
}
export interface CategoryColumnRegistration {