diff --git a/client/src/pages/config/users/formShortcuts.jsx b/client/src/pages/config/users/formShortcuts.jsx index 3a4bc1e..1a95965 100644 --- a/client/src/pages/config/users/formShortcuts.jsx +++ b/client/src/pages/config/users/formShortcuts.jsx @@ -27,7 +27,7 @@ import { strengthColor, strengthIndicator } from '../../../utils/password-streng import { EyeOutlined, EyeInvisibleOutlined } from '@ant-design/icons'; -export const CosmosInputText = ({ name, style, type, placeholder, onChange, label, formik }) => { +export const CosmosInputText = ({ name, style, multiline, type, placeholder, onChange, label, formik }) => { return {label} @@ -36,6 +36,7 @@ export const CosmosInputText = ({ name, style, type, placeholder, onChange, labe type={type ? type : 'text'} value={formik.values[name]} name={name} + multiline={multiline} onBlur={formik.handleBlur} onChange={(...e) => { if (onChange) { diff --git a/client/src/pages/newInstall/newInstall.jsx b/client/src/pages/newInstall/newInstall.jsx index 47e6e8a..4f7c95d 100644 --- a/client/src/pages/newInstall/newInstall.jsx +++ b/client/src/pages/newInstall/newInstall.jsx @@ -260,12 +260,14 @@ const NewInstall = () => { {formik.values.HTTPSCertificateMode === "PROVIDED" && ( <>