Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,14 @@ export function ExpertResultCard({
)}
>
<div className="flex items-start justify-between gap-2 mb-2">
<header className="min-w-0 flex-1">
<div className="flex flex-wrap items-center gap-x-2 gap-y-1">
<h3 className="text-base font-semibold text-gray-900 shrink-0">{name || '—'}</h3>
<header className="min-w-0 flex-1 pr-1">
<div className="flex min-w-0 flex-wrap items-center gap-x-2 gap-y-1">
<h3
className="min-w-0 max-w-full break-words text-base font-semibold text-gray-900"
title={name || undefined}
>
{name || '—'}
</h3>
{sources.length > 0
? sources.map((src, i) => (
<a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ export function OutreachDetailPageContent({
)}
</div>

{(isClosed || email.status === 'sent') && email.notes?.trim() ? (
{isClosed && email.notes?.trim() ? (
<div className="rounded-lg border border-gray-200 bg-gray-50 px-4 py-3">
<p className="text-xs font-semibold text-gray-600 uppercase tracking-wide">Notes</p>
<p className="text-sm text-gray-800 mt-1 whitespace-pre-wrap">{email.notes}</p>
Expand Down