From 4d6874bbdab8b9d33e4eb9283f197d0f29946973 Mon Sep 17 00:00:00 2001 From: Aleksander Grygier Date: Sat, 15 Aug 2026 22:53:48 +0200 Subject: [PATCH] ui : add show-org-name-in-trigger display setting --- tools/ui/src/lib/constants/settings-keys.constants.ts | 1 + tools/ui/src/lib/constants/settings.constants.ts | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/tools/ui/src/lib/constants/settings-keys.constants.ts b/tools/ui/src/lib/constants/settings-keys.constants.ts index c8761c7587..18edeb6fd8 100644 --- a/tools/ui/src/lib/constants/settings-keys.constants.ts +++ b/tools/ui/src/lib/constants/settings-keys.constants.ts @@ -56,6 +56,7 @@ export const SETTINGS_KEYS = { SHOW_MESSAGE_STATS: 'showMessageStats', SHOW_MODEL_QUANTIZATION: 'showModelQuantization', SHOW_MODEL_TAGS: 'showModelTags', + SHOW_MODEL_ORG_NAME_IN_TRIGGER: 'showModelOrgNameInTrigger', SHOW_RAW_MODEL_NAMES: 'showRawModelNames', SHOW_RAW_OUTPUT_SWITCH: 'showRawOutputSwitch', SHOW_SYSTEM_MESSAGE: 'showSystemMessage', diff --git a/tools/ui/src/lib/constants/settings.constants.ts b/tools/ui/src/lib/constants/settings.constants.ts index b4699af197..677548e839 100644 --- a/tools/ui/src/lib/constants/settings.constants.ts +++ b/tools/ui/src/lib/constants/settings.constants.ts @@ -283,6 +283,13 @@ export const SETTINGS_REGISTRY: SettingsSectionEntry[] = [ label: 'Show model tags', type: SettingsFieldType.CHECKBOX }, + { + defaultValue: false, + help: 'Display the organization name in the model selector trigger button.', + key: SETTINGS_KEYS.SHOW_MODEL_ORG_NAME_IN_TRIGGER, + label: 'Show organization name in model selector trigger', + type: SettingsFieldType.CHECKBOX + }, { defaultValue: false, help: 'Display the current build version in the bottom-right corner of the interface.',