diff --git a/ui/desktop/openapi.json b/ui/desktop/openapi.json index e8ce9725a3..306d833e48 100644 --- a/ui/desktop/openapi.json +++ b/ui/desktop/openapi.json @@ -3929,7 +3929,7 @@ }, "primary": { "type": "boolean", - "description": "When true, the field is shown prominently in the UI (not collapsed).\nDefaults to the value of `required` if not specified.", + "description": "Defaults to the value of `required` if not specified.\nUIs may use this to feature this config value more prominently.", "nullable": true }, "required": { diff --git a/ui/desktop/src/api/types.gen.ts b/ui/desktop/src/api/types.gen.ts index 83c68e99e5..4e1d84d9e5 100644 --- a/ui/desktop/src/api/types.gen.ts +++ b/ui/desktop/src/api/types.gen.ts @@ -363,8 +363,8 @@ export type EnvVarConfig = { description?: string | null; name: string; /** - * When true, the field is shown prominently in the UI (not collapsed). * Defaults to the value of `required` if not specified. + * UIs may use this to feature this config value more prominently. */ primary?: boolean | null; required?: boolean;