From 39c431363494bc7ce2afd3eb65efe2889f342bed Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sat, 3 May 2025 14:22:10 +1000 Subject: [PATCH] [Test] Update expectation context menu deprecation --- src/extensions/core/groupNode.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/extensions/core/groupNode.ts b/src/extensions/core/groupNode.ts index 03680d517..35a43f207 100644 --- a/src/extensions/core/groupNode.ts +++ b/src/extensions/core/groupNode.ts @@ -1127,13 +1127,11 @@ export class GroupNodeHandler { getExtraMenuOptions?.apply(this, arguments) // @ts-expect-error fixme ts strict error - let optionIndex = options.findIndex((o) => o.content === 'Outputs') + let optionIndex = options.findIndex((o) => o.content === 'Properties') if (optionIndex === -1) optionIndex = options.length - else optionIndex++ options.splice( optionIndex, 0, - null, { content: 'Convert to nodes', // @ts-expect-error @@ -1145,7 +1143,8 @@ export class GroupNodeHandler { { content: 'Manage Group Node', callback: () => manageGroupNodes(this.type) - } + }, + null ) }