Skip to content

Commit dab9c53

Browse files
fix: add explicit ordering for stream processor context menu actions (#654)
1 parent 1eb876e commit dab9c53

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -644,15 +644,18 @@
644644
},
645645
{
646646
"command": "mdb.startStreamProcessor",
647-
"when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem"
647+
"when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem",
648+
"group": "6@1"
648649
},
649650
{
650651
"command": "mdb.stopStreamProcessor",
651-
"when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem"
652+
"when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem",
653+
"group": "6@2"
652654
},
653655
{
654656
"command": "mdb.dropStreamProcessor",
655-
"when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem"
657+
"when": "view == mongoDBConnectionExplorer && viewItem == streamProcessorTreeItem",
658+
"group": "6@3"
656659
}
657660
],
658661
"editor/title": [

0 commit comments

Comments
 (0)