Skip to content

Commit

Permalink
html end tag name fix h4->h3
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Dec 16, 2023
1 parent 846a20c commit aadf9dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private void writeAuthorizationFor(List<Coding> authorization, String header, Ou
for (int i = 0; i < authorization.size(); i++)
{
out.write("<div class=\"row authorization\">\n");
out.write("<h3>" + header + (authorization.size() > 1 ? " " + (i + 1) : "") + "</h4>\n");
out.write("<h3>" + header + (authorization.size() > 1 ? " " + (i + 1) : "") + "</h3>\n");

Coding authorizationCode = authorization.get(i);
writeRowWithAdditionalRowClasses("Authorization Type",
Expand Down

0 comments on commit aadf9dd

Please sign in to comment.