Skip to content

Commit

Permalink
fix: add explicit ordering for stream processor context menu actions (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkitkalra-mdb authored Jan 11, 2024
1 parent 1eb876e commit dab9c53
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down

0 comments on commit dab9c53

Please sign in to comment.