From 5123655128e42afda6d986070c929855b2f5b149 Mon Sep 17 00:00:00 2001 From: Harshit Singh <73997189+harshit078@users.noreply.github.com> Date: Mon, 9 Sep 2024 18:05:03 +0530 Subject: [PATCH] fix: Notes not visible in Timeline activities (#6936) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description - This PR solves #6935 #6934 - fixed the notes color in timeline activities which was not visible in dark mode - fixed spelling typo ## Before Screenshot 2024-09-08 at 12 28 03 PM Screenshot 2024-09-08 at 12 20 27 PM ## After Screenshot 2024-09-08 at 12 27 53 PM Screenshot 2024-09-08 at 12 19 17 PM --- .../activities/timelineActivities/components/EventRow.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-front/src/modules/activities/timelineActivities/components/EventRow.tsx b/packages/twenty-front/src/modules/activities/timelineActivities/components/EventRow.tsx index 902a7b728db1..d920ec38f0b9 100644 --- a/packages/twenty-front/src/modules/activities/timelineActivities/components/EventRow.tsx +++ b/packages/twenty-front/src/modules/activities/timelineActivities/components/EventRow.tsx @@ -14,6 +14,7 @@ import { beautifyPastDateRelativeToNow } from '~/utils/date-utils'; import { isUndefinedOrNull } from '~/utils/isUndefinedOrNull'; const StyledTimelineItemContainer = styled.div` + color: ${({ theme }) => theme.font.color.primary}; display: flex; gap: ${({ theme }) => theme.spacing(4)}; height: 'auto';