From 9b34626df96a6a5f3906043fe5c59c59fb09bd2c Mon Sep 17 00:00:00 2001 From: John L Date: Fri, 27 May 2022 17:22:04 +0100 Subject: [PATCH] lint wants double quotes --- src/web/waiters/RecipeWaiter.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/waiters/RecipeWaiter.mjs b/src/web/waiters/RecipeWaiter.mjs index b15e3a03..bf9c757f 100755 --- a/src/web/waiters/RecipeWaiter.mjs +++ b/src/web/waiters/RecipeWaiter.mjs @@ -405,7 +405,7 @@ class RecipeWaiter { * @param {element} el - The operation stub element from the operations pane */ 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); el.innerHTML = op.toFullHtml();