mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Fix arc node info updating (#12007)
* Fix arc node info updating * Missed await
This commit is contained in:
@@ -56,6 +56,10 @@
|
||||
{
|
||||
"command": "arc.refresh",
|
||||
"title": "%command.refresh.title%"
|
||||
},
|
||||
{
|
||||
"command": "arc.editConnection",
|
||||
"title": "%command.editConnection.title%"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
@@ -71,6 +75,10 @@
|
||||
{
|
||||
"command": "arc.refresh",
|
||||
"when": "false"
|
||||
},
|
||||
{
|
||||
"command": "arc.editConnection",
|
||||
"when": "false"
|
||||
}
|
||||
],
|
||||
"view/title": [
|
||||
@@ -92,14 +100,19 @@
|
||||
"group": "navigation@1"
|
||||
},
|
||||
{
|
||||
"command": "arc.refresh",
|
||||
"command": "arc.editConnection",
|
||||
"when": "view == azureArc && viewItem == dataControllers",
|
||||
"group": "navigation@2"
|
||||
},
|
||||
{
|
||||
"command": "arc.removeController",
|
||||
"command": "arc.refresh",
|
||||
"when": "view == azureArc && viewItem == dataControllers",
|
||||
"group": "navigation@3"
|
||||
},
|
||||
{
|
||||
"command": "arc.removeController",
|
||||
"when": "view == azureArc && viewItem == dataControllers",
|
||||
"group": "navigation@4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -794,6 +807,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"request": "^2.88.0",
|
||||
"uuid": "^8.3.0",
|
||||
"vscode-nls": "^4.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -801,6 +815,7 @@
|
||||
"@types/node": "^12.11.7",
|
||||
"@types/request": "^2.48.3",
|
||||
"@types/sinon": "^9.0.4",
|
||||
"@types/uuid": "^8.3.0",
|
||||
"mocha": "^5.2.0",
|
||||
"mocha-junit-reporter": "^1.17.0",
|
||||
"mocha-multi-reporters": "^1.1.7",
|
||||
|
||||
Reference in New Issue
Block a user