Skip to content

Commit f090de8

Browse files
committed
1.14.8
1 parent 8eaef53 commit f090de8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/vue/src/composables/useFormField.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export function useFormField(
279279
// Initialize string fields to empty string if undefined
280280
// This ensures empty text fields are saved as "" not undefined/missing
281281
if (schema.type === "string" && value.value === undefined) {
282-
setValue("");
282+
setValue("", false); // Skip validation during initialization
283283
}
284284

285285
// Computed label from override or schema

0 commit comments

Comments
 (0)