Make external meeting titles display in red

Update the styling of the MeetingRow component to conditionally apply red text color to the meeting title when the `isExternal` property is true.
This commit is contained in:
Riyadh
2026-07-07 08:24:00 +00:00
parent 1d7ae96b9c
commit 36c1dee00a
@@ -4637,7 +4637,7 @@ function MeetingRow({
return (
<td
key="meeting"
className={`border border-gray-300 px-3 py-3 align-middle text-center text-[#0B1E3F] relative group`}
className={`border border-gray-300 px-3 py-3 align-middle text-center ${meeting.isExternal ? "text-[#dc2626]" : "text-[#0B1E3F]"} relative group`}
style={tintedCellStyle(col, true)}
>
<EditableCell