Defect #13618
closedCSV export of spent time ignores filters and columns selection
0%
Description
When you do a CSV export of spent time, it opens a dialog that lets you choose which columns you want to include in that export.
The problem is that the dialog is a form, and the form's action holds all the filter parameters. By design, GET actions in forms
remove all URL parameters upon submission, thus the exported CSV contains all the issues instead of the expected filtered issues.
It looks like exporting of issues to CSV (not to be confused with spent time) works, as the queries are pulled from session data
and don't rely on parameters. I think this would be the best solution for spent time queries, assuming that the ability to choose
which columns you want to export (selected versus all) is important.
The quickest solution would be to remove the modal altogether and always do selected columns only.
(The modal was introduced with #4742)
Files
Related issues