summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/aboutCommand.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/commands/aboutCommand.ts')
-rw-r--r--packages/cli/src/ui/commands/aboutCommand.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/cli/src/ui/commands/aboutCommand.ts b/packages/cli/src/ui/commands/aboutCommand.ts
index 18a82682..47b1b495 100644
--- a/packages/cli/src/ui/commands/aboutCommand.ts
+++ b/packages/cli/src/ui/commands/aboutCommand.ts
@@ -28,6 +28,9 @@ export const aboutCommand: SlashCommand = {
const selectedAuthType =
context.services.settings.merged.selectedAuthType || '';
const gcpProject = process.env.GOOGLE_CLOUD_PROJECT || '';
+ const ideClient =
+ context.services.config?.getIdeClient()?.getDetectedIdeDisplayName() ||
+ '';
const aboutItem: Omit<HistoryItemAbout, 'id'> = {
type: MessageType.ABOUT,
@@ -37,6 +40,7 @@ export const aboutCommand: SlashCommand = {
modelVersion,
selectedAuthType,
gcpProject,
+ ideClient,
};
context.ui.addItem(aboutItem, Date.now());