Fixed checkbox not showing up.

This commit is contained in:
rocketdebris 2025-11-07 15:35:31 -05:00
parent 20b3c1166f
commit 5b3a6655cd

View File

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