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
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.",