Small improvement

pull/214/head
M66B 9 months ago
parent f3857eea48
commit c127eab2d8

@ -1946,7 +1946,10 @@ public class HtmlHelper {
result.put(key, baseParams.get(key));
}
return TextUtils.join(";", result.values());
if (result.size() == 0)
return "";
return TextUtils.join(";", result.values()) + ";";
}
private static Integer getFontWeight(String value) {

Loading…
Cancel
Save