diff --git a/frontend/src/components/modals/CreateJobModal.vue b/frontend/src/components/modals/CreateJobModal.vue index 6040186..c6968c3 100644 --- a/frontend/src/components/modals/CreateJobModal.vue +++ b/frontend/src/components/modals/CreateJobModal.vue @@ -50,7 +50,7 @@ const formRef = ref(null); // Form data const formData = reactive({ address: "", - requireHalfDown: false, + requireHalfDown: "", customerName: "", company: "", }); @@ -87,8 +87,9 @@ const formFields = computed(() => [ { name: "requireHalfDown", label: "Requires Half Down?", - type: "check", + type: "checkbox", required: true, + defaultValue: false, cols: 12, md: 6, helpText: "Check this box if the job requires half down to start.",