Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

### Changed

- Improves AI status label in integrations popup to "Select AI model to enable AI features" and fixes text brightness ([#4400](https://github.com/gitkraken/vscode-gitlens/issues/4400))

## [17.2.0] - 2025-06-17

### Added
Expand Down
22 changes: 12 additions & 10 deletions src/webviews/apps/plus/shared/components/integrations-chip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,16 +356,18 @@ export class GlIntegrationsChip extends LitElement {
<span class="integration__icon"><code-icon icon="${icon}"></code-icon></span>
${this.aiEnabled
? html`<span class="integration__content">
<span class="integration__title">
<span>${model?.provider.name ?? 'AI'}</span>
${showProBadge
? html` <gl-feature-badge
placement="right"
.source=${{ source: 'home', detail: 'integrations' } as const}
cloud
></gl-feature-badge>`
: nothing}
</span>
${model?.provider.name
? html`<span class="integration__title">
<span>${model.provider.name}</span>
${showProBadge
? html` <gl-feature-badge
placement="right"
.source=${{ source: 'home', detail: 'integrations' } as const}
cloud
></gl-feature-badge>`
: nothing}
</span>`
: html`<span class="integration_details">Select AI model to enable AI features</span>`}
${model?.name ? html`<span class="integration__details">${model.name}</span>` : nothing}
</span>
<span class="integration__actions">
Expand Down