Small improvement

This commit is contained in:
M66B 2024-01-16 19:57:28 +01:00
parent f3857eea48
commit c127eab2d8
1 changed files with 4 additions and 1 deletions

View File

@ -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) {