From 31cf228f456d0ec64df725b6106922f4ce0a1fe8 Mon Sep 17 00:00:00 2001 From: Eric Jizba Date: Wed, 11 Sep 2019 13:50:08 -0700 Subject: [PATCH] Fix webhook link for DockerHub organization (#1265) --- src/commands/registries/azure/DockerWebhookCreateStep.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/registries/azure/DockerWebhookCreateStep.ts b/src/commands/registries/azure/DockerWebhookCreateStep.ts index 400c32afb8..46524f1fbe 100644 --- a/src/commands/registries/azure/DockerWebhookCreateStep.ts +++ b/src/commands/registries/azure/DockerWebhookCreateStep.ts @@ -43,7 +43,7 @@ export class DockerWebhookCreateStep extends AzureWizardExecuteStep//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