mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 00:06:17 -04:00
different fix
This commit is contained in:
parent
e9ff8707ed
commit
30f9286ce9
1 changed files with 5 additions and 1 deletions
|
@ -396,7 +396,11 @@ class RecipeWaiter {
|
||||||
const item = document.createElement("li");
|
const item = document.createElement("li");
|
||||||
|
|
||||||
item.classList.add("operation");
|
item.classList.add("operation");
|
||||||
item.innerHTML = name.replace(">", ">", "g").replace("<", "<", "g");
|
|
||||||
|
if (this.app.operations[name] != null) {
|
||||||
|
item.innerHTML = name;
|
||||||
|
}
|
||||||
|
|
||||||
this.buildRecipeOperation(item);
|
this.buildRecipeOperation(item);
|
||||||
document.getElementById("rec-list").appendChild(item);
|
document.getElementById("rec-list").appendChild(item);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue