Skip to content
Merged
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
6 changes: 3 additions & 3 deletions src/renderer/components/metrics/MetricGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { type FC, useContext } from 'react';

import {
CommentIcon,
IssueClosedIcon,
IssueOpenedIcon,
MilestoneIcon,
TagIcon,
} from '@primer/octicons-react';
Expand Down Expand Up @@ -40,8 +40,8 @@ export const MetricGroup: FC<IMetricGroup> = ({
<Box className="flex gap-1">
{notification.subject?.linkedIssues?.length > 0 && (
<MetricPill
color={IconColor.GREEN}
icon={IssueClosedIcon}
color={IconColor.GRAY}
icon={IssueOpenedIcon}
metric={notification.subject.linkedIssues.length}
title={linkedIssuesPillDescription}
/>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/renderer/components/settings/NotificationSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
CheckIcon,
CommentIcon,
GitPullRequestIcon,
IssueClosedIcon,
IssueOpenedIcon,
MilestoneIcon,
TagIcon,
} from '@primer/octicons-react';
Expand Down Expand Up @@ -105,7 +105,7 @@ export const NotificationSettings: FC = () => {
<Box className="pl-4">
<Stack direction="vertical" gap="none">
<Stack direction="horizontal" gap="condensed">
<IssueClosedIcon size={Size.SMALL} />
<IssueOpenedIcon size={Size.SMALL} />
linked issues
</Stack>
<Stack direction="horizontal" gap="condensed">
Expand Down Expand Up @@ -150,7 +150,7 @@ export const NotificationSettings: FC = () => {
</li>
<li>
<Stack direction="horizontal" gap="condensed">
<IssueClosedIcon size={Size.SMALL} />
<IssueOpenedIcon size={Size.SMALL} />
Issue
</Stack>
</li>
Expand Down
Loading