Skip to content

Commit

Permalink
Merge pull request #1092 from givepraise/csv_button_fix
Browse files Browse the repository at this point in the history
Fixing CSV copy to clipboard function
  • Loading branch information
kristoferlund committed Jun 26, 2023
2 parents a3ce948 + 39b161b commit 23dfc3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Reports/ReportsRunPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const ReportsRunPage = (): JSX.Element | null => {
text={csv}
filename={`${response.manifest.name}.csv`}
/>
<CopyToClipboard text={json} />
<CopyToClipboard text={csv} />
</div>
</div>
<div className="p-3 mt-5 bg-black bg-opacity-5">
Expand Down

0 comments on commit 23dfc3a

Please sign in to comment.