Skip to content

Commit 0e91b3e

Browse files
committed
feedback changes
1 parent 87048b3 commit 0e91b3e

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
@@ -17547,7 +17547,7 @@
1754717547
{
1754817548
"view": "gitlens.views.worktrees",
1754917549
"contents": "[Upgrade to Pro](command:gitlens.plus.upgrade?%7B%22source%22%3A%22worktrees%22%7D)",
17550-
"when": "gitlens:plus:required && gitlens:plus:state == 4"
17550+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7)"
1755117551
},
1755217552
{
1755317553
"view": "gitlens.views.worktrees",
@@ -17557,7 +17557,12 @@
1755717557
{
1755817558
"view": "gitlens.views.worktrees",
1755917559
"contents": "Launchpad Sale: Save 75% or more on GitLens Pro",
17560-
"when": "gitlens:plus:required && gitlens:plus:state == 4 && gitlens:promo =~ /(launchpad|launchpad-extended)/"
17560+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7) && gitlens:promo =~ /(launchpad|launchpad-extended)/"
17561+
},
17562+
{
17563+
"view": "gitlens.views.worktrees",
17564+
"contents": "Your Pro license has expired. Please upgrade for full access to Worktrees and other Pro features.",
17565+
"when": "gitlens:plus:required && gitlens:plus:state == 7"
1756117566
},
1756217567
{
1756317568
"view": "gitlens.views.worktrees",
@@ -17846,7 +17851,7 @@
1784617851
"media": {
1784717852
"markdown": "walkthroughs/welcome/pro-reactivate.md"
1784817853
},
17849-
"when": "gitlens:plus:state == 6"
17854+
"when": "gitlens:plus:state == 7"
1785017855
},
1785117856
{
1785217857
"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)