Reduced dynamic table limit for extensions to 25 rows

Affects issues:
- Close #1762
This commit is contained in:
Risto Lahtela 2021-04-15 20:24:34 +03:00
parent a015925751
commit 3e65d46164

View File

@ -29,7 +29,7 @@ public interface HtmlTable {
}
static HtmlTable fromExtensionTable(Table table, Color tableColor) {
if (table.getRows().size() > 50) {
if (table.getRows().size() > 25) {
return new DynamicHtmlTable(table);
} else {
return new HtmlTableWithColoredHeader(table, tableColor);