Skip to content

Commit

Permalink
chat: update label for adding more models action (#239774)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero authored Feb 6, 2025
1 parent beb71c1 commit ed2f9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/chat/browser/chatInputPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1707,7 +1707,7 @@ class ModelPickerActionViewItem extends MenuEntryActionViewItem {

if (this._contextKeyService.getContextKeyValue<boolean>(ChatContextKeys.Setup.limited.key) === true) {
actions.push(new Separator());
actions.push(toAction({ id: 'moreModels', label: localize('chat.moreModels', "Enable More Models..."), run: () => this._commandService.executeCommand('workbench.action.chat.upgradePlan') }));
actions.push(toAction({ id: 'moreModels', label: localize('chat.moreModels', "Add More Models..."), run: () => this._commandService.executeCommand('workbench.action.chat.upgradePlan') }));
}

return actions;
Expand Down

0 comments on commit ed2f9fd

Please sign in to comment.