Add a test change.

This commit is contained in:
Ivaylo Novakov 2021-12-03 15:00:20 +01:00
parent 489f1ece99
commit 1401f2b9e1
No known key found for this signature in database
GPG Key ID: 06B9354AB08BE9C6
2 changed files with 3 additions and 2 deletions

View File

@ -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",
{ {

View File

@ -22,6 +22,7 @@ const fieldsConfig = [
{ {
name: "token", name: "token",
type: "hidden", type: "hidden",
position: 2,
}, },
]; ];