Is there a way to update the facet values as shown here to be Yes/No instead?
Hey @Jason_Hershaft,
You can control the facet value labels through the config file for the desired vertical within the Facet component. Here is an example of changing an Accepting New Patients boolean field to show as Yes/No:
"Facets": {
"expand": true, // Allow the user to expand and collapse the facets
"showMore": true, // Display a link to see more facet options within a facet
"searchOnChange": true,
"fields": {
"acceptingNewPatients": {
"fieldLabels": {
"false": "No",
"true": "Yes"
}
}
}
},
Hope this helps!
DJ