Skip to content

Commit bd0e99d

Browse files
Hotfix kern table (#36)
1 parent 9807efe commit bd0e99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/kern-table/KernTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { NoTableEntriesYet } from "../NoTableEntriesYet";
1111

1212
export default function KernTable(props: KernTableProps) {
1313
return (
14-
<table className={`min-w-full divide-y divide-gray-300 rounded-b-lg ${props.config.addBorder ? 'border border-gray-300' : ''}`}>
14+
<table className={`min-w-full divide-y divide-gray-300 rounded-b-lg ${props.config?.addBorder ? 'border border-gray-300' : ''}`}>
1515
<thead className="bg-gray-50">
1616
<tr>
1717
{props.headers.map((header) => (

0 commit comments

Comments
 (0)