File tree Expand file tree Collapse file tree 1 file changed +17
-22
lines changed Expand file tree Collapse file tree 1 file changed +17
-22
lines changed Original file line number Diff line number Diff line change @@ -82,32 +82,27 @@ export function IssueIdBreadcrumb({project, group}: ShortIdBreadcrumbProps) {
82
82
size = "zero"
83
83
borderless
84
84
aria-label = { t ( 'View issue share settings' ) }
85
+ icon = { < IconGlobe size = "xs" color = "subText" /> }
85
86
title = { tct ( 'This issue has been shared [link:with a public link].' , {
86
87
link : < ExternalLink href = { shareUrl } /> ,
87
88
} ) }
88
89
tooltipProps = { { isHoverable : true } }
89
- icon = {
90
- < IconGlobe
91
- size = "xs"
92
- color = "subText"
93
- onClick = { ( ) =>
94
- openModal ( modalProps => (
95
- < ShareIssueModal
96
- { ...modalProps }
97
- organization = { organization }
98
- projectSlug = { group . project . slug }
99
- groupId = { group . id }
100
- onToggle = { ( ) =>
101
- trackAnalytics ( 'issue.shared_publicly' , {
102
- organization,
103
- } )
104
- }
105
- event = { null }
106
- hasIssueShare
107
- />
108
- ) )
109
- }
110
- />
90
+ onClick = { ( ) =>
91
+ openModal ( modalProps => (
92
+ < ShareIssueModal
93
+ { ...modalProps }
94
+ organization = { organization }
95
+ projectSlug = { group . project . slug }
96
+ groupId = { group . id }
97
+ onToggle = { ( ) =>
98
+ trackAnalytics ( 'issue.shared_publicly' , {
99
+ organization,
100
+ } )
101
+ }
102
+ event = { null }
103
+ hasIssueShare
104
+ />
105
+ ) )
111
106
}
112
107
/>
113
108
) }
You can’t perform that action at this time.
0 commit comments