More enterprise friendly wording#318610
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Copilot chat quota dashboard messaging to use more enterprise-friendly wording for Business/Enterprise users when additional usage (overage) is enabled, aligning with the feedback in #318433.
Changes:
- Add org-focused callout copy (“Your organization has enabled additional usage…”) for Business/Enterprise users when approaching/exceeding premium chat limits with additional usage enabled.
- Expand unit test coverage to validate the new wording across entitlement types and quota states.
Show a summary per file
| File | Description |
|---|---|
src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusDashboard.ts |
Updates quota callout copy selection to show org-specific messaging for Business/Enterprise entitlements. |
src/vs/workbench/contrib/chat/test/browser/chatStatusDashboard.test.ts |
Adds assertions for the new org-specific callout strings for Enterprise/Business scenarios. |
Copilot's findings
- Files reviewed: 2/2 changed files
- Comments generated: 2
cwebster-99
reviewed
May 27, 2026
| entitlement: ChatEntitlement.Business, | ||
| })); | ||
|
|
||
| assert.strictEqual(getCalloutText(dashboard.element), 'Once the limit is reached, your organization has enabled additional usage to allow for continued use.'); |
Member
There was a problem hiding this comment.
Suggested change
| assert.strictEqual(getCalloutText(dashboard.element), 'Once the limit is reached, your organization has enabled additional usage to allow for continued use.'); | |
| assert.strictEqual(getCalloutText(dashboard.element), 'Your organization has enabled additional usage, so you can continue once your limit is reached.'); |
| entitlement: ChatEntitlement.Enterprise, | ||
| })); | ||
|
|
||
| assert.strictEqual(getCalloutText(dashboard.element), 'Once the limit is reached, your organization has enabled additional usage to allow for continued use.'); |
Member
There was a problem hiding this comment.
Suggested change
| assert.strictEqual(getCalloutText(dashboard.element), 'Once the limit is reached, your organization has enabled additional usage to allow for continued use.'); | |
| assert.strictEqual(getCalloutText(dashboard.element), 'Your organization has enabled additional usage, so you can continue once your limit is reached.'); |
| entitlement: ChatEntitlement.Enterprise, | ||
| })); | ||
|
|
||
| assert.strictEqual(getCalloutText(dashboard.element), 'Your organization has enabled additional usage. Usage will continue until limits reset.'); |
Member
There was a problem hiding this comment.
Suggested change
| assert.strictEqual(getCalloutText(dashboard.element), 'Your organization has enabled additional usage. Usage will continue until limits reset.'); | |
| assert.strictEqual(getCalloutText(dashboard.element), 'Your organization has enabled additional usage. You can continue using GitHub Copilot.'); |
| ? localize('quotaAdditionalUsageActive', "Additional budget is configured. Usage will continue until limits reset.") | ||
| : localize('quotaBudgetActive', "Premium request budget is configured. Usage will continue until limits reset."); | ||
| calloutText.textContent = isEnterpriseUser | ||
| ? localize('quotaAdditionalUsageActiveEnterprise', "Your organization has enabled additional usage. Usage will continue until limits reset.") |
Member
There was a problem hiding this comment.
Suggested change
| ? localize('quotaAdditionalUsageActiveEnterprise', "Your organization has enabled additional usage. Usage will continue until limits reset.") | |
| ? localize('quotaAdditionalUsageActiveEnterprise', "Your organization has enabled additional usage. You can continue using GitHub Copilot.") |
| calloutText.textContent = isEnterpriseUser | ||
| ? localize('quotaAdditionalUsageActiveEnterprise', "Your organization has enabled additional usage. Usage will continue until limits reset.") | ||
| : isUsageBasedBilling | ||
| ? localize('quotaAdditionalUsageActive', "Additional budget is configured. Usage will continue until limits reset.") |
Member
There was a problem hiding this comment.
"Usage will continue until limits reset." doesn't really make sense to me. I think we want to convey the user can keep using in overage until the limit resets and then they go back to pulling from their credits.
| ? localize('quotaAdditionalUsageApproaching', "Once the limit is reached, additional budget will be used.") | ||
| : localize('quotaBudgetApproaching', "Once the limit is reached, premium request budget will be used."); | ||
| calloutText.textContent = isEnterpriseUser | ||
| ? localize('quotaAdditionalUsageApproachingEnterprise', "Once the limit is reached, your organization has enabled additional usage to allow for continued use.") |
Member
There was a problem hiding this comment.
Suggested change
| ? localize('quotaAdditionalUsageApproachingEnterprise', "Once the limit is reached, your organization has enabled additional usage to allow for continued use.") | |
| ? localize('quotaAdditionalUsageApproachingEnterprise', "Your organization has enabled additional usage, so you can continue once your limit is reached.") |
cwebster-99
approved these changes
May 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix #318433