Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/entity-configuration/definitions/fields-defs/model.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ export const FieldsDefinition: Partial<FieldsDefinitionRegistry<EntityCoreObject
title: 'Contact email',
filter: null,
isDisplayable: true,
render: (r) => renderEmail((r as ICircuit).contact_email ?? '[email protected]'),
render: (r) => renderEmptyOrValue(renderEmail((r as ICircuit).contact_email)),
vocabulary: {
plural: 'Registration Date',
singular: 'Registration Date',
Expand Down
2 changes: 1 addition & 1 deletion src/ui/segments/explore/browse-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function BrowseLink({
key={`counter-${type}`}
variant="outline"
size="lg"
className="group h-18 w-full border-none text-base"
className="group w-full border-none text-base"
active={entityType === type}
onClick={onClick}
>
Expand Down