Skip to content

Commit

Permalink
comply with eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
brun0ne committed Apr 7, 2023
1 parent 12082ba commit e9ff870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/waiters/RecipeWaiter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ class RecipeWaiter {
const item = document.createElement("li");

item.classList.add("operation");
item.innerHTML = name.replace('>', '&gt;', 'g').replace('<', '&lt;', 'g');
item.innerHTML = name.replace(">", "&gt;", "g").replace("<", "&lt;", "g");
this.buildRecipeOperation(item);
document.getElementById("rec-list").appendChild(item);

Expand Down

0 comments on commit e9ff870

Please sign in to comment.