Skip to content

Commit

Permalink
fix portal url (#976)
Browse files Browse the repository at this point in the history
  • Loading branch information
motm32 authored Dec 6, 2024
1 parent c416dd6 commit 1e21cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tree/azure/SubscriptionItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class SubscriptionItem implements ResourceGroupsItem {
this.id = `/accounts/${nonNullValueAndProp(subscription.account, 'id')}/tenants/${subscription.tenantId}/subscriptions/${subscription.subscriptionId}`;
this.description = description ? description : '';

this.portalUrl = createPortalUrl(this.subscription, this.id);
this.portalUrl = createPortalUrl(this.subscription, `/subscriptions/${this.subscription.subscriptionId}`);
}

public readonly portalUrl: vscode.Uri;
Expand Down

0 comments on commit 1e21cea

Please sign in to comment.