diff --git a/frontend/console/src/features/timeline/TimelineIcon.tsx b/frontend/console/src/features/timeline/TimelineIcon.tsx index 9371e31a0c..af22963ddd 100644 --- a/frontend/console/src/features/timeline/TimelineIcon.tsx +++ b/frontend/console/src/features/timeline/TimelineIcon.tsx @@ -1,4 +1,4 @@ -import { Call02Icon, CallIncoming04Icon, Clock02Icon, Menu01Icon, PackageReceiveIcon, Rocket01Icon } from 'hugeicons-react' +import { Call02Icon, CallIncoming04Icon, Menu01Icon, PackageReceiveIcon, Rocket01Icon, TimeQuarterPassIcon } from 'hugeicons-react' import type { Event } from '../../protos/xyz/block/ftl/v1/console/console_pb' import { LogLevelBadgeSmall } from '../logs/LogLevelBadgeSmall' import { eventTextColor } from './timeline.utils' @@ -21,7 +21,7 @@ export const TimelineIcon = ({ event }: { event: Event }) => { case 'ingress': return case 'cronScheduled': - return + return default: return } diff --git a/frontend/console/src/features/timeline/filters/TimelineFilterPanel.tsx b/frontend/console/src/features/timeline/filters/TimelineFilterPanel.tsx index a69a977710..bf1b798161 100644 --- a/frontend/console/src/features/timeline/filters/TimelineFilterPanel.tsx +++ b/frontend/console/src/features/timeline/filters/TimelineFilterPanel.tsx @@ -1,4 +1,4 @@ -import { Call02Icon, Clock02Icon, PackageReceiveIcon, Rocket01Icon } from 'hugeicons-react' +import { Call02Icon, PackageReceiveIcon, Rocket01Icon, TimeQuarterPassIcon } from 'hugeicons-react' import type React from 'react' import { useEffect, useState } from 'react' import { useModules } from '../../../api/modules/use-modules' @@ -29,7 +29,7 @@ const EVENT_TYPES: Record = { icon: , }, ingress: { label: 'Ingress', type: EventType.INGRESS, icon: }, - cronScheduled: { label: 'Cron Scheduled', type: EventType.CRON_SCHEDULED, icon: }, + cronScheduled: { label: 'Cron Scheduled', type: EventType.CRON_SCHEDULED, icon: }, } const LOG_LEVELS: Record = { diff --git a/frontend/console/src/features/timeline/timeline.utils.ts b/frontend/console/src/features/timeline/timeline.utils.ts index f74f7d0bcf..ac15376622 100644 --- a/frontend/console/src/features/timeline/timeline.utils.ts +++ b/frontend/console/src/features/timeline/timeline.utils.ts @@ -6,7 +6,7 @@ const eventBackgroundColorMap: Record = { ingress: 'bg-sky-400', deploymentCreated: 'bg-green-500 dark:bg-green-300', deploymentUpdated: 'bg-green-500 dark:bg-green-300', - cronScheduled: 'bg-indigo-500', + cronScheduled: 'bg-blue-500', '': 'bg-gray-500', } @@ -18,7 +18,7 @@ const eventTextColorMap: Record = { ingress: 'text-sky-400', deploymentCreated: 'text-green-500 dark:text-green-300', deploymentUpdated: 'text-green-500 dark:text-green-300', - cronScheduled: 'text-indigo-500', + cronScheduled: 'text-blue-500', '': 'text-gray-500', }