Fixed extra closing div tags on litebans table on server page #630

This commit is contained in:
Rsl1122 2018-07-16 17:57:50 +03:00
parent 4b6953c403
commit 1c6c647aec

View File

@ -36,7 +36,7 @@ public class TabsElement {
.append(navText).append("</a></li>");
content.append("<div role=\"tabpanel\" class=\"tab-pane fade").append(first ? " in active" : "")
.append("\" id=\"").append(id).append("\">")
.append(contentHtml).append("</div></div>");
.append(contentHtml).append("</div>");
first = false;
}
content.append("</div>");