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); }