Skip to content

Commit

Permalink
Fix webhook link for DockerHub organization (#1265)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejizba committed Sep 11, 2019
1 parent 0f6fdce commit 31cf228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/registries/azure/DockerWebhookCreateStep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class DockerWebhookCreateStep extends AzureWizardExecuteStep<IAppServiceW
// point to dockerhub to create a webhook
// http://cloud.docker.com/repository/docker/<registryName>/<repoName>/webHooks
const dockerhubPrompt: string = "Copy & Open";
const dockerhubUri: string = `https://cloud.docker.com/repository/docker/${this._treeItem.parent.parent.parent.username}/${this._treeItem.parent.repoName}/webHooks`;
const dockerhubUri: string = `https://cloud.docker.com/repository/docker/${this._treeItem.parent.parent.namespace}/${this._treeItem.parent.repoName}/webHooks`;

// NOTE: The response to the information message is not awaited but handled independently of the wizard steps.
// VS Code will hide such messages in the notifications pane after a period of time; awaiting them risks
Expand Down

0 comments on commit 31cf228

Please sign in to comment.