diff --git a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/components/QuestionsComboBox.tsx b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/components/QuestionsComboBox.tsx index d62ca9e6d8..14458afee1 100644 --- a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/components/QuestionsComboBox.tsx +++ b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/components/QuestionsComboBox.tsx @@ -15,11 +15,13 @@ import { useTranslate } from "@tolgee/react"; import clsx from "clsx"; import { AirplayIcon, + ArrowUpFromDotIcon, CheckIcon, ChevronDown, ChevronUp, ContactIcon, EyeOff, + FlagIcon, GlobeIcon, GridIcon, HashIcon, @@ -89,8 +91,9 @@ const questionIcons = { device: SmartphoneIcon, os: AirplayIcon, browser: GlobeIcon, - source: GlobeIcon, + source: ArrowUpFromDotIcon, action: MousePointerClickIcon, + country: FlagIcon, // others Language: LanguagesIcon, @@ -132,10 +135,16 @@ export const SelectedCommandItem = ({ label, questionType, type }: Partial { + if (type !== OptionsType.META) return undefined; + return label === "os" ? "uppercase" : "capitalize"; + }; + return (
{getIconType()} -

+

{typeof label === "string" ? label : getLocalizedValue(label, "default")}