diff --git a/packages/console/src/ds-components/TextInput/index.tsx b/packages/console/src/ds-components/TextInput/index.tsx index 6603b697b..c90e29978 100644 --- a/packages/console/src/ds-components/TextInput/index.tsx +++ b/packages/console/src/ds-components/TextInput/index.tsx @@ -30,6 +30,7 @@ type Props = Omit, 'size'> & { // eslint-disable-next-line react/boolean-prop-naming alwaysShowSuffix?: boolean; isConfidential?: boolean; + inputContainerClassName?: string; }; function TextInput( @@ -43,6 +44,7 @@ function TextInput( readOnly, type = 'text', isConfidential = false, + inputContainerClassName, ...rest }: Props, reference: Ref> @@ -96,7 +98,8 @@ function TextInput( isConfidential && isContentHidden && type === 'text' && styles.hideTextContainerContent, icon && styles.withIcon, disabled && styles.disabled, - readOnly && styles.readOnly + readOnly && styles.readOnly, + inputContainerClassName )} > {icon && {icon}} diff --git a/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx b/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx index f5ad0ebe5..1ab69dea6 100644 --- a/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx +++ b/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx @@ -120,7 +120,7 @@ function ProtectedAppForm({ tip={conditional(!hasDetailedInstructions && t('protected_app.form.url_field_tooltip'))} >