Skip to content

Commit

Permalink
fix(issues): Open tag csv in new window (#82546)
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper authored Dec 27, 2024
1 parent 9d3111b commit 94d458d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion static/app/views/issueDetails/groupTags/groupTagsDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,13 @@ export function GroupTagsDrawer({group}: {group: Group}) {
{
key: 'export-page',
label: t('Export Page to CSV'),
to: `${organization.slug}/${project.slug}/issues/${group.id}/tags/${tagKey}/export/`,
// TODO(issues): Dropdown menu doesn't support hrefs yet
onAction: () => {
window.open(
`/${organization.slug}/${project.slug}/issues/${group.id}/tags/${tagKey}/export/`,
'_blank'
);
},
},
{
key: 'export-all',
Expand Down

0 comments on commit 94d458d

Please sign in to comment.