Skip to content

Commit

Permalink
Fix if-statement escape bug
Browse files Browse the repository at this point in the history
  • Loading branch information
CMEONE committed Mar 12, 2021
1 parent 9fa515e commit d316cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ class tApp {
}
}
}
newHtml = newHTML.replaceAll("{\\%", "{%");
newHTML = newHTML.replaceAll("{\\%", "{%");
return newHTML;
}
static renderTemplateHTML(html, options) {
Expand Down

0 comments on commit d316cd4

Please sign in to comment.