Skip to content

Commit b8466b7

Browse files
committed
feedback changes
1 parent ef82083 commit b8466b7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17517,7 +17517,7 @@
1751717517
{
1751817518
"view": "gitlens.views.worktrees",
1751917519
"contents": "[Upgrade to Pro](command:gitlens.plus.upgrade?%7B%22source%22%3A%22worktrees%22%7D)",
17520-
"when": "gitlens:plus:required && gitlens:plus:state == 4"
17520+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7)"
1752117521
},
1752217522
{
1752317523
"view": "gitlens.views.worktrees",
@@ -17527,7 +17527,12 @@
1752717527
{
1752817528
"view": "gitlens.views.worktrees",
1752917529
"contents": "Launchpad Sale: Save 75% or more on GitLens Pro",
17530-
"when": "gitlens:plus:required && gitlens:plus:state == 4 && gitlens:promo =~ /(launchpad|launchpad-extended)/"
17530+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7) && gitlens:promo =~ /(launchpad|launchpad-extended)/"
17531+
},
17532+
{
17533+
"view": "gitlens.views.worktrees",
17534+
"contents": "Your Pro license has expired. Please upgrade for full access to Worktrees and other Pro features.",
17535+
"when": "gitlens:plus:required && gitlens:plus:state == 7"
1753117536
},
1753217537
{
1753317538
"view": "gitlens.views.worktrees",
@@ -17816,7 +17821,7 @@
1781617821
"media": {
1781717822
"markdown": "walkthroughs/welcome/pro-reactivate.md"
1781817823
},
17819-
"when": "gitlens:plus:state == 6"
17824+
"when": "gitlens:plus:state == 7"
1782017825
},
1782117826
{
1782217827
"id": "visualize",

src/webviews/apps/shared/components/feature-badge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export class GlFeatureBadge extends LitElement {
270270

271271
case SubscriptionState.PaidExpired:
272272
content = html`<p>
273-
Your Pro license as ended. You can now only use Pro features on publicly-hosted repos.
273+
Your Pro license has expired. You can now only use Pro features on publicly-hosted repos.
274274
</p>
275275
${this.renderUpgradeActions(html`<p>Please upgrade for full access to Pro features:</p>`)}`;
276276
break;

0 commit comments

Comments
 (0)