Skip to content

Commit

Permalink
Fix the exclusion of certain issue status in working days calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianruesch committed Jan 17, 2024
1 parent 5418fa9 commit 6de4bf9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/CreateExport/CreateExportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ export function CreateExportModal({
<Button
ml="auto"
size="sm"
onClick={() => { exportIssues(issuesToExport, issueStatus) }}
onClick={() => { exportIssues(
issuesToExport,
issueStatus.filter((s) => includedIssueStatus.includes(s.name)),
)}}
>
Export CSV
</Button>
Expand Down

0 comments on commit 6de4bf9

Please sign in to comment.