We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eaef53 commit f090de8Copy full SHA for f090de8
1 file changed
packages/vue/src/composables/useFormField.ts
@@ -279,7 +279,7 @@ export function useFormField(
279
// Initialize string fields to empty string if undefined
280
// This ensures empty text fields are saved as "" not undefined/missing
281
if (schema.type === "string" && value.value === undefined) {
282
- setValue("");
+ setValue("", false); // Skip validation during initialization
283
}
284
285
// Computed label from override or schema
0 commit comments