Skip to content

Commit 71249b0

Browse files
committed
feedback changes
1 parent dc4ace3 commit 71249b0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17548,7 +17548,7 @@
1754817548
{
1754917549
"view": "gitlens.views.worktrees",
1755017550
"contents": "[Upgrade to Pro](command:gitlens.plus.upgrade?%7B%22source%22%3A%22worktrees%22%7D)",
17551-
"when": "gitlens:plus:required && gitlens:plus:state == 4"
17551+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7)"
1755217552
},
1755317553
{
1755417554
"view": "gitlens.views.worktrees",
@@ -17558,12 +17558,12 @@
1755817558
{
1755917559
"view": "gitlens.views.worktrees",
1756017560
"contents": "Launchpad sale: Save 75% or more on GitLens Pro",
17561-
"when": "gitlens:plus:required && gitlens:plus:state == 4 && gitlens:promo == launchpad-extended"
17561+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 || gitlens:plus:state == 7) && gitlens:promo == launchpad-extended"
1756217562
},
1756317563
{
1756417564
"view": "gitlens.views.worktrees",
1756517565
"contents": "Limited-time sale: Save up to 80% on GitLen Pro",
17566-
"when": "gitlens:plus:required && gitlens:plus:state == 4 && gitlens:promo == devexdays"
17566+
"when": "gitlens:plus:required && (gitlens:plus:state == 4 ||  gitlens:plus:state == 7) && gitlens:promo == devexdays"
1756717567
},
1756817568
{
1756917569
"view": "gitlens.views.worktrees",
@@ -17852,7 +17852,7 @@
1785217852
"media": {
1785317853
"markdown": "walkthroughs/welcome/pro-reactivate.md"
1785417854
},
17855-
"when": "gitlens:plus:state == 6"
17855+
"when": "gitlens:plus:state == 7"
1785617856
},
1785717857
{
1785817858
"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)