Skip to content

Commit

Permalink
fix: use only ASCII characters
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Apr 5, 2024
1 parent f4c194c commit f36a210
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -193,7 +193,7 @@ public void renderConfigurations(List<ConfigurationSetting> configuration) {
var clazz = index % 2 == 0 ? "even" : "odd";
return tr(
td(code(setting.getKey())),
td(setting.isRequired() ? code("") : null).attr("align", "center"),
td(setting.isRequired() ? code("x") : null).attr("align", "center"),
td(code(setting.getType())).attr("align", "center"),
td(code(setting.getDefaultValue())),
td(codeOrNull(setting.getPattern())).attr("align", "center"),
Expand Down

0 comments on commit f36a210

Please sign in to comment.