Skip to content

Commit 90ad0a1

Browse files
authored
fix(issue-details): Convert IconLock to IconGlobe for public issues (#81156)
**Before** <img width="308" alt="image" src="https://github.com/user-attachments/assets/9af752e7-1cca-4a81-924e-d33f4eb77a61"> <img width="203" alt="image" src="https://github.com/user-attachments/assets/97b70ae7-9b51-4189-a8eb-8ec4378cbcc6"> **After** <img width="295" alt="image" src="https://github.com/user-attachments/assets/96e293f0-db78-447f-a5d3-beca368280a3"> <img width="170" alt="image" src="https://github.com/user-attachments/assets/3bacd188-3359-4cdf-b0c9-41ac5918a1e0">
1 parent 56ebc5b commit 90ad0a1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

static/app/views/issueDetails/streamline/groupActivityIcons.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
IconFlag,
1212
IconGithub,
1313
IconGitlab,
14+
IconGlobe,
1415
IconGraph,
1516
IconJira,
1617
IconLock,
@@ -53,7 +54,7 @@ export const groupActivityTypeIconMapping: Record<
5354
},
5455
[GroupActivityType.SET_UNRESOLVED]: {Component: IconClose, defaultProps: {}},
5556
[GroupActivityType.SET_IGNORED]: {Component: IconMute, defaultProps: {}},
56-
[GroupActivityType.SET_PUBLIC]: {Component: IconLock, defaultProps: {}},
57+
[GroupActivityType.SET_PUBLIC]: {Component: IconGlobe, defaultProps: {}},
5758
[GroupActivityType.SET_PRIVATE]: {Component: IconLock, defaultProps: {locked: true}},
5859
[GroupActivityType.SET_REGRESSION]: {Component: IconFire, defaultProps: {}},
5960
[GroupActivityType.CREATE_ISSUE]: {

static/app/views/issueDetails/streamline/header.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import UnhandledTag from 'sentry/components/group/inboxBadges/unhandledTag';
1414
import ExternalLink from 'sentry/components/links/externalLink';
1515
import Link from 'sentry/components/links/link';
1616
import {Tooltip} from 'sentry/components/tooltip';
17-
import {IconLock} from 'sentry/icons';
17+
import {IconGlobe} from 'sentry/icons';
1818
import {t, tct} from 'sentry/locale';
1919
import {space} from 'sentry/styles/space';
2020
import type {Event} from 'sentry/types/event';
@@ -101,8 +101,7 @@ export default function StreamlinedGroupHeader({
101101
})}
102102
tooltipProps={{isHoverable: true}}
103103
icon={
104-
<IconLock
105-
locked={false}
104+
<IconGlobe
106105
size="xs"
107106
color="subText"
108107
onClick={() =>

0 commit comments

Comments
 (0)