Skip to content

Commit

Permalink
fix: repair html input type overwritten (#1003)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmurillo95 authored Jul 20, 2023
1 parent 65d0216 commit 0a68966
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export function inferType(value: any, overrides?: any, allowedTypes?: string[]):
if (!type) {
type = dataTypeMap.object.schema;
}
return type;
return { ...type };
}

/**
Expand Down

0 comments on commit 0a68966

Please sign in to comment.