View row seperator lines only

This commit is contained in:
M66B 2020-10-03 10:24:54 +02:00
parent 18d64c5f3a
commit b341c680da
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ public class HtmlHelper {
if (hasVisibleContent(row.childNodes())) {
Element next = row.nextElementSibling();
if (next != null && "tr".equals(next.tagName()))
if (text_separators)
if (text_separators && view)
row.appendElement("hr")
.attr("x-dashed", "true");
else