mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
fix lowercase with url
This commit is contained in:
parent
4499f7ca93
commit
a309d64e19
@ -300,10 +300,7 @@ const BasicForm: ForwardRefExoticComponent<any> = forwardRef(
|
||||
}
|
||||
}
|
||||
|
||||
if (
|
||||
field.fieldType === FormFieldSchemaType.Email ||
|
||||
field.fieldType === FormFieldSchemaType.URL
|
||||
) {
|
||||
if (field.fieldType === FormFieldSchemaType.Email) {
|
||||
const fieldName: string = field.name!;
|
||||
if ((values as any)[fieldName]) {
|
||||
(values as any)[fieldName] = (
|
||||
|
Loading…
Reference in New Issue
Block a user