From 93c61ddd6e3579985d416177a880c2c891ea34c6 Mon Sep 17 00:00:00 2001 From: Pulkit Kalra Date: Thu, 11 Jan 2024 16:58:02 +1100 Subject: [PATCH] fix: add explicit ordering for stream processor context menu actions --- package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index fdd44c075..39d481ea8 100644 --- a/package.json +++ b/package.json @@ -644,15 +644,18 @@ }, { "command": "mdb.startStreamProcessor", - "when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem" + "when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem", + "group": "6@1" }, { "command": "mdb.stopStreamProcessor", - "when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem" + "when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem", + "group": "6@2" }, { "command": "mdb.dropStreamProcessor", - "when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem" + "when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem", + "group": "6@3" } ], "editor/title": [