update styling:

This commit is contained in:
Casey 2025-11-07 15:04:22 -06:00
parent 5b3a6655cd
commit b5adab5786
3 changed files with 14 additions and 8 deletions

View file

@ -110,17 +110,15 @@ const formFields = computed(() => [
{
name: "customerName",
label: "Client Name",
type: "autocomplete", // Changed from 'select' to 'autocomplete'
type: "autocomplete",
required: true,
placeholder: "Type or select client name",
cols: 12,
md: 6,
options: customerNames.value, // Direct array of strings
options: customerNames.value,
forceSelection: false, // Allow custom entries not in the list
dropdown: true,
// For string arrays, don't set optionLabel at all
helpText: "Select an existing client or enter a new client name",
// Let the Form component handle filtering automatically
},
{
name: "addressLine1",