fix: error when description is null (#536)
parent
5c1d46aa25
commit
8e9703545a
|
@ -228,15 +228,17 @@ const EventTypesPage = (props: InferGetServerSidePropsType<typeof getServerSideP
|
||||||
/>
|
/>
|
||||||
<p>1-on-1</p>
|
<p>1-on-1</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center text-sm text-neutral-500">
|
{type.description && (
|
||||||
<InformationCircleIcon
|
<div className="flex items-center text-sm text-neutral-500">
|
||||||
className="flex-shrink-0 mr-1.5 w-4 h-4 text-neutral-400"
|
<InformationCircleIcon
|
||||||
aria-hidden="true"
|
className="flex-shrink-0 mr-1.5 w-4 h-4 text-neutral-400"
|
||||||
/>
|
aria-hidden="true"
|
||||||
<div className="truncate max-w-32 sm:max-w-full">
|
/>
|
||||||
{type.description.substring(0, 100)}
|
<div className="truncate max-w-32 sm:max-w-full">
|
||||||
|
{type.description.substring(0, 100)}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
)}
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in New Issue