Add a test change.
This commit is contained in:
parent
489f1ece99
commit
1401f2b9e1
|
@ -43,12 +43,12 @@ export default function SelfServiceForm({ fieldsConfig, onSubmit, title, validat
|
||||||
<div>
|
<div>
|
||||||
<input
|
<input
|
||||||
id={field.type === "hidden" ? null : field.name}
|
id={field.type === "hidden" ? null : field.name}
|
||||||
name={field.name}
|
name={field.name+" THIS IS A TEST CHANGE"}
|
||||||
type={field.type}
|
type={field.type}
|
||||||
autoComplete={field.autoComplete}
|
autoComplete={field.autoComplete}
|
||||||
onChange={formik.handleChange}
|
onChange={formik.handleChange}
|
||||||
onBlur={formik.handleBlur}
|
onBlur={formik.handleBlur}
|
||||||
value={getIn(formik.values, field.name) ?? ""}
|
value={getIn(formik.values, field.name)+" THIS IS A TEST CHANGE" ?? ""+" THIS IS A TEST CHANGE"}
|
||||||
className={classnames(
|
className={classnames(
|
||||||
"appearance-none block w-full px-3 py-2 border rounded-md shadow-sm focus:outline-none sm:text-sm",
|
"appearance-none block w-full px-3 py-2 border rounded-md shadow-sm focus:outline-none sm:text-sm",
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,6 +22,7 @@ const fieldsConfig = [
|
||||||
{
|
{
|
||||||
name: "token",
|
name: "token",
|
||||||
type: "hidden",
|
type: "hidden",
|
||||||
|
position: 2,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Reference in New Issue