Skip to content

Commit

Permalink
Change context value to a regexp (#2297)
Browse files Browse the repository at this point in the history
  • Loading branch information
nturinski authored Nov 11, 2022
1 parent d5730fa commit afc5037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/deployments/viewCommitInGitHub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function viewCommitInGitHub(context: IActionContext, node?: Deploym
if (!node) {
node = await ext.rgApi.pickAppResource<DeploymentTreeItem>({ ...context, suppressCreatePick: true }, {
filter: webAppFilter,
expectedChildContextValue: 'deployment/github'
expectedChildContextValue: new RegExp('deployment/github')
});
}
await node.viewCommitInGitHub(context);
Expand Down

0 comments on commit afc5037

Please sign in to comment.