From d89c3c87d2ec2e0cf82d04404a2f31ced8ee8ea5 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Fri, 10 May 2024 11:28:37 -0400 Subject: [PATCH] Adds account view link --- src/webviews/apps/shared/components/feature-badge.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/webviews/apps/shared/components/feature-badge.ts b/src/webviews/apps/shared/components/feature-badge.ts index 71d879e48801f..cbf1e63fb8cc4 100644 --- a/src/webviews/apps/shared/components/feature-badge.ts +++ b/src/webviews/apps/shared/components/feature-badge.ts @@ -211,9 +211,15 @@ export class GlFeatureBadge extends LitElement { let content; switch (this.state) { case SubscriptionState.Paid: - content = html`Your - ${getSubscriptionPlanName(this.subscription?.plan.actual.id ?? SubscriptionPlanId.Pro)} plan provides - access to all Pro features.`; + content = html`

+ Your + + ${getSubscriptionPlanName(this.subscription?.plan.actual.id ?? SubscriptionPlanId.Pro)} + + plan provides access to all Pro features. +

`; break; case SubscriptionState.VerificationRequired: