Browse Source

Adds checkmark to default model in picker

main
Eric Amodio 1 year ago
parent
commit
a4323ef2c8
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/quickpicks/aiModelPicker.ts

+ 1
- 0
src/quickpicks/aiModelPicker.ts View File

@ -42,6 +42,7 @@ export async function showAIModelPicker(): Promise
if (item.kind === QuickPickItemKind.Separator) continue; if (item.kind === QuickPickItemKind.Separator) continue;
if (item.model === model) { if (item.model === model) {
item.description = `${item.description} \u2713`;
item.picked = true; item.picked = true;
break; break;
} }

Loading…
Cancel
Save