Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Apr 10, 2024
1 parent 72a0d2c commit 6ce0669
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/src/components/SearchPage/SearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ export const SearchForm: FC<SearchFormProps> = ({
if (field.grouped === true) {
return (
<div key={field.name} className='flex flex-col border p-3 mb-3 rounded-md border-gray-300'>
<h3 className='text-gray-500 text-sm mb-1'>{field.displayName !==undefined ? field.displayName : field.label}</h3>
<h3 className='text-gray-500 text-sm mb-1'>
{field.displayName !== undefined ? field.displayName : field.label}
</h3>

{field.groupedFields.map((groupedField) => (
<SearchField
Expand Down

0 comments on commit 6ce0669

Please sign in to comment.