lint wants double quotes

This commit is contained in:
John L 2022-05-27 17:22:04 +01:00
parent eb04145a62
commit 9b34626df9

View file

@ -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();