From 13ed1c5cc232a57b9f5e64088434634384cbb5a1 Mon Sep 17 00:00:00 2001 From: Yann Stepienik Date: Sat, 1 Apr 2023 15:57:35 +0100 Subject: [PATCH] v0.1.3 Fix bug certificate upload --- client/src/pages/config/users/formShortcuts.jsx | 3 ++- client/src/pages/newInstall/newInstall.jsx | 2 ++ package.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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" && ( <>