0.5.0-beta.2 still has table row missing issue
0.5.0-beta.2 still has the last table row missing issue. the last row sometimes appear when i adjust the margin and paddings. even the margins of other elements like h1, p affects the table not just the margins and paddings of the table. I've recreated the error and attached the files.
0.5.0-beta.2 table row missing error.zip
I also have the same problem with my project. Any updates on this issue so far?
I also have the same problem with my project. Any updates on this issue so far?
No luck so far. I just adjust the margin top of tables that's not breaking correctly.
No luck so far. I just adjust the margin top of tables that's not breaking correctly.
I do too, that workaround only helps with a specific data; with other data, the rows are still missing.
I also have the same problem with my project. Hopefully, the issue will be resolved soon.
Might be related to this code lines in Layout.lastChildCheck() which removes the last element recursive if any of it's children is overflowing:
if (parentElement.dataset.overflowTagged && parentElement.textContent.trim() == '') {
parentElement.parentNode.removeChild(parentElement);
}
This worked for me:
table { table-layout: fixed; }