mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 00:06:17 -04:00
update linting to allow dybnamic import. Recipe highlight still broken
This commit is contained in:
parent
4bf2a29070
commit
9af5e40071
4 changed files with 96 additions and 68 deletions
|
@ -37,7 +37,6 @@ class Recipe {
|
|||
* @param {Object} recipeConfig
|
||||
*/
|
||||
_parseConfig(recipeConfig) {
|
||||
|
||||
recipeConfig.forEach((c) => {
|
||||
this.opList.push({
|
||||
name: c.op,
|
||||
|
@ -46,7 +45,7 @@ class Recipe {
|
|||
breakpoint: c.breakpoint,
|
||||
disabled: c.disabled,
|
||||
});
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
@ -90,9 +89,9 @@ class Recipe {
|
|||
ingValues: o.args,
|
||||
breakpoint: o.breakpoint,
|
||||
disabled: o.disabled,
|
||||
})
|
||||
});
|
||||
|
||||
})
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue