We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a8af3d + 2aad4d4 commit d083671Copy full SHA for d083671
src/pages/endpoint/autopilot/list-profiles/add.jsx
@@ -68,9 +68,9 @@ const AutopilotProfileForm = () => {
68
type="autoComplete"
69
label="Language"
70
name="languages"
71
- options={languageList.map(({ language, tag }) => ({
+ options={languageList.map(({ language, tag, "Geographic area": geographicArea }) => ({
72
value: tag,
73
- label: language,
+ label: `${language} - ${geographicArea}`, // Format as "language - geographic area" for display
74
}))}
75
formControl={formControl}
76
multiple={false}
0 commit comments