fixed checbox not reporting correct value

This commit is contained in:
2025-11-19 14:44:16 -05:00
parent 7850767967
commit aacb499971

View File

@@ -145,7 +145,7 @@ onMounted(async () => {
<!-- Passed Checkbox -->
<VeeField :name="`attendees[${index}].passed`" v-slot="{ field: f, errors: e }">
<div class="flex items-center h-[38px]">
<input type="checkbox" class="h-4 w-4" v-bind="f" />
<input type="checkbox" :checked="f.value" @change="f.onChange($event)" />
</div>
</VeeField>