Skip to content

Commit

Permalink
fix: call icon was not red on error (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbillman authored Oct 6, 2023
1 parent 464a079 commit 239355e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/client/src/features/timeline/TimelineIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const TimelineIcon = ({ event }: Props) => {
return event.entry.value.sourceVerbRef ? (
<PhoneIcon className={`${style} ${textColor}`} />
) : (
<PhoneArrowDownLeftIcon className={`${style}`} />
<PhoneArrowDownLeftIcon className={`${style} ${textColor}`} />
)
}
case 'deploymentCreated':
Expand Down

0 comments on commit 239355e

Please sign in to comment.