Skip to content

Commit e332f80

Browse files
committed
another fix
1 parent 8781f65 commit e332f80

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const renderHTML = (mat: any) => {
127127
} else {
128128
const { count: innerCount, body: innerBody } = renderHTML(val);
129129
count += innerCount;
130-
temp += `<th rowspan="${innerCount}">${key}</th>`;
130+
temp += `<th rowspan="${count}">${key}</th>`;
131131
temp += innerBody;
132132
}
133133
body += temp;

0 commit comments

Comments
 (0)