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 226cf0f commit 723e0c4Copy full SHA for 723e0c4
mathjax3-ts/output/chtml/Wrappers/mtable.ts
@@ -153,7 +153,7 @@ export class CHTMLmtable extends CHTMLWrapper {
153
* Pad any short rows with extra cells
154
*/
155
protected padRows() {
156
- for (const row of Array.from(this.chtml.childNodes)) {
+ for (const row of Array.from((this.chtml.firstChild as HTMLElement).childNodes)) {
157
while (row.childNodes.length < this.numCols) {
158
row.appendChild(this.html('mjx-mtd'));
159
}
0 commit comments