diff --git a/changelog/infra-form-updates.yaml b/changelog/infra-form-updates.yaml new file mode 100644 index 00000000000..1a545761aa4 --- /dev/null +++ b/changelog/infra-form-updates.yaml @@ -0,0 +1,4 @@ +type: Changed # One of: Added, Changed, Developer Experience, Deprecated, Docs, Fixed, Removed, Security +description: Updated infrastructure monitor form to not show classification options, use a password input for the key, and use consistent wording. +pr: 7240 # PR number +labels: [] # Optional: ["high-risk", "db-migration"] diff --git a/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx b/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx index 6b442fcb795..6135079b89c 100644 --- a/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx +++ b/clients/admin-ui/src/features/common/form/FormFieldFromSchema.tsx @@ -91,7 +91,8 @@ export const FormFieldFromSchema = ({ ); } - if (fieldSchema.multiline) { + // Use textarea for multiline fields, but prioritize password input for sensitive fields + if (fieldSchema.multiline && !fieldSchema.sensitive) { return ( - {llmClassifierFeatureEnabled && ( + {showLLMOption && ( <> > = { [ConnectionType.WEBSITE]: WEBSITE_MONITOR_COPY, diff --git a/clients/admin-ui/src/features/integrations/integration-type-info/oktaInfo.tsx b/clients/admin-ui/src/features/integrations/integration-type-info/oktaInfo.tsx index 9fb89a26062..892c51022be 100644 --- a/clients/admin-ui/src/features/integrations/integration-type-info/oktaInfo.tsx +++ b/clients/admin-ui/src/features/integrations/integration-type-info/oktaInfo.tsx @@ -14,10 +14,10 @@ export const OKTA_INTEGRATION_PLACEHOLDER = { export const OKTA_DESCRIPTION = ( <> - SSO providers manage user authentication and can help identify systems - within your infrastructure. Adding an SSO provider as a data source allows - you to detect connected systems, monitor access patterns, and enhance your - data map for better visibility and control. + Identity providers manage user authentication and can help identify systems + within your infrastructure. Adding an identity provider as a data source + allows you to detect connected systems, monitor access patterns, and enhance + your data map for better visibility and control. );