Skip to content

Commit 760be5b

Browse files
committed
fix: use LinkIcon for linked issues
1 parent 8744c3c commit 760be5b

File tree

3 files changed

+37
-85
lines changed

3 files changed

+37
-85
lines changed

src/renderer/components/metrics/MetricGroup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { type FC, useContext } from 'react';
22

33
import {
44
CommentIcon,
5-
IssueClosedIcon,
5+
LinkIcon,
66
MilestoneIcon,
77
TagIcon,
88
} from '@primer/octicons-react';
@@ -41,7 +41,7 @@ export const MetricGroup: FC<IMetricGroup> = ({
4141
{notification.subject?.linkedIssues?.length > 0 && (
4242
<MetricPill
4343
color={IconColor.GREEN}
44-
icon={IssueClosedIcon}
44+
icon={LinkIcon}
4545
metric={notification.subject.linkedIssues.length}
4646
title={linkedIssuesPillDescription}
4747
/>

0 commit comments

Comments
 (0)