We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56d4f9a commit 713adb0Copy full SHA for 713adb0
1 file changed
apps/site/util/table.ts
@@ -24,6 +24,10 @@ export default function remarkTableTitles() {
24
row.children.forEach((cell, idx) => {
25
cell.data ??= {};
26
27
+ if (idx > headerLabels.length) {
28
+ return;
29
+ }
30
+
31
cell.data.hProperties = {
32
'data-label': headerLabels[idx],
33
};
0 commit comments