Skip to content

Commit 302c5da

Browse files
committed
feedback changes
1 parent e9fd214 commit 302c5da

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
@@ -17579,7 +17579,7 @@
1757917579
{
1758017580
"view": "gitlens.views.worktrees",
1758117581
"contents": "[Upgrade to Pro](command:gitlens.plus.upgrade?%7B%22source%22%3A%22worktrees%22%7D)",
17582-
"when": "gitlens:plus:required && gitlens:plus:state == 4"
17582+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7)"
1758317583
},
1758417584
{
1758517585
"view": "gitlens.views.worktrees",
@@ -17589,7 +17589,12 @@
1758917589
{
1759017590
"view": "gitlens.views.worktrees",
1759117591
"contents": "Launchpad Sale: Save 75% or more on GitLens Pro",
17592-
"when": "gitlens:plus:required && gitlens:plus:state == 4 && gitlens:promo =~ /(launchpad|launchpad-extended)/"
17592+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7) && gitlens:promo =~ /(launchpad|launchpad-extended)/"
17593+
},
17594+
{
17595+
"view": "gitlens.views.worktrees",
17596+
"contents": "Your Pro license has expired. Please upgrade for full access to Worktrees and other Pro features.",
17597+
"when": "gitlens:plus:required && gitlens:plus:state == 7"
1759317598
},
1759417599
{
1759517600
"view": "gitlens.views.worktrees",
@@ -17887,7 +17892,7 @@
1788717892
"media": {
1788817893
"markdown": "walkthroughs/welcome/pro-reactivate.md"
1788917894
},
17890-
"when": "gitlens:plus:state == 6"
17895+
"when": "gitlens:plus:state == 7"
1789117896
},
1789217897
{
1789317898
"id": "visualize",

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

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

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

0 commit comments

Comments
 (0)