From 4740c5d8dc048db11031b1d4949454a00ea29bf6 Mon Sep 17 00:00:00 2001 From: Robin Scholtes Date: Wed, 16 Aug 2023 17:52:39 +1200 Subject: [PATCH] ...codeQL --- src/web/components/c-operation-li.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/components/c-operation-li.mjs b/src/web/components/c-operation-li.mjs index 2a53ded9..06ca912e 100644 --- a/src/web/components/c-operation-li.mjs +++ b/src/web/components/c-operation-li.mjs @@ -267,8 +267,8 @@ export class COperationLi extends HTMLElement { * is needed for the drag and drop functionality of the Sortable lists */ cloneNode() { - const { app, name, icon, includeStarIcon, charIndicesToHighlight } = this; - return new COperationLi(app, name, icon, includeStarIcon, charIndicesToHighlight); + const { app, operationName, icon, includeStarIcon, charIndicesToHighlight } = this; + return new COperationLi(app, operationName, icon, includeStarIcon, charIndicesToHighlight); }