...codeQL

This commit is contained in:
Robin Scholtes 2023-08-16 17:52:39 +12:00
parent 4612a11e32
commit 4740c5d8dc

View file

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