Skip to content

Commit

Permalink
Fix when clause contexts for upcoming VS Code (v1.77) release (#2420)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicroFish91 authored Mar 15, 2023
1 parent 28e42c5 commit f493530
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,22 +591,22 @@
},
{
"command": "appService.viewDeploymentLogs",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment//",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment\\//",
"group": "1@1"
},
{
"command": "appService.Redeploy",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment//",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment\\//",
"group": "1@2"
},
{
"command": "appService.ViewCommitInGitHub",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment/github/",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment\\/github/",
"group": "1@3"
},
{
"command": "appService.OpenInPortal",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment//",
"when": "view == azureResourceGroups && viewItem =~ /appService.*deployment\\//",
"group": "1@4"
}
],
Expand Down

0 comments on commit f493530

Please sign in to comment.