Skip to content

Commit

Permalink
Fix indentation on attribute interception
Browse files Browse the repository at this point in the history
  • Loading branch information
casid committed Jul 9, 2023
1 parent 03f724f commit 02f2bce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public void onHtmlTagAttributeCodePart(int depth, String codePart, String tagNam

writeCodePart(depth, codePart);

writeIndentation(depth + 1);
writeIndentation(depth);
kotlinCode.append("jteOutput.setContext(\"").append(tagName).append("\", null)\n");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public void onHtmlTagAttributeCodePart(int depth, String codePart, String tagNam

writeCodePart(depth, codePart);

writeIndentation(depth + 1);
writeIndentation(depth);
javaCode.append("jteOutput.setContext(\"").append(tagName).append("\", null);\n");
}

Expand Down

0 comments on commit 02f2bce

Please sign in to comment.