mirror of
https://github.com/gchq/CyberChef
synced 2024-12-26 04:23:10 +00:00
Operations with no arguments can now be added to the recipe without causing errors
This commit is contained in:
parent
19c54a99cd
commit
e0eb972a54
1 changed files with 1 additions and 0 deletions
|
@ -482,6 +482,7 @@ App.prototype.setRecipeConfig = function(recipeConfig) {
|
||||||
// Populate arguments
|
// Populate arguments
|
||||||
const args = item.querySelectorAll(".arg");
|
const args = item.querySelectorAll(".arg");
|
||||||
for (let j = 0; j < args.length; j++) {
|
for (let j = 0; j < args.length; j++) {
|
||||||
|
if (recipeConfig[i].args[j] === undefined) continue;
|
||||||
if (args[j].getAttribute("type") === "checkbox") {
|
if (args[j].getAttribute("type") === "checkbox") {
|
||||||
// checkbox
|
// checkbox
|
||||||
args[j].checked = recipeConfig[i].args[j];
|
args[j].checked = recipeConfig[i].args[j];
|
||||||
|
|
Loading…
Reference in a new issue