Skip to content

Commit a11d7ef

Browse files
authored
feat(issue-details): Add support link to dropdown (#80804)
1 parent 9fb9a1b commit a11d7ef

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

static/app/views/issueDetails/actions/newIssueExperienceButton.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@ export function NewIssueExperienceButton() {
6767
label: t('Switch to the old issue experience'),
6868
onAction: handleToggle,
6969
},
70+
{
71+
key: 'learn-more',
72+
label: t('Learn more about the new UI'),
73+
onAction: () => {
74+
window.open(
75+
'https://sentry.zendesk.com/hc/en-us/articles/30882241712795',
76+
'_blank'
77+
);
78+
},
79+
},
7080
{
7181
key: 'give-feedback',
7282
label: t('Give feedback on new UI'),

0 commit comments

Comments
 (0)