We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9807efe commit bd0e99dCopy full SHA for bd0e99d
components/kern-table/KernTable.tsx
@@ -11,7 +11,7 @@ import { NoTableEntriesYet } from "../NoTableEntriesYet";
11
12
export default function KernTable(props: KernTableProps) {
13
return (
14
- <table className={`min-w-full divide-y divide-gray-300 rounded-b-lg ${props.config.addBorder ? 'border border-gray-300' : ''}`}>
+ <table className={`min-w-full divide-y divide-gray-300 rounded-b-lg ${props.config?.addBorder ? 'border border-gray-300' : ''}`}>
15
<thead className="bg-gray-50">
16
<tr>
17
{props.headers.map((header) => (
0 commit comments