mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-09 07:45:00 -04:00
lint wants double quotes
This commit is contained in:
parent
eb04145a62
commit
9b34626df9
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ class RecipeWaiter {
|
||||||
* @param {element} el - The operation stub element from the operations pane
|
* @param {element} el - The operation stub element from the operations pane
|
||||||
*/
|
*/
|
||||||
buildRecipeOperation(el) {
|
buildRecipeOperation(el) {
|
||||||
const opName = $(el).data('opname');
|
const opName = $(el).data("opname");
|
||||||
const op = new HTMLOperation(opName, this.app.operations[opName], this.app, this.manager);
|
const op = new HTMLOperation(opName, this.app.operations[opName], this.app, this.manager);
|
||||||
el.innerHTML = op.toFullHtml();
|
el.innerHTML = op.toFullHtml();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue