Add reports dashboards with custom date ranges - #2051
Merged
Conversation
jmgasper
marked this pull request as ready for review
July 23, 2026 21:52
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
https://topcoder.atlassian.net/browse/PM-5703
Why
Testing showed that the horizontal charts in reports 2 and 3 made their timelines inconsistent with report 1, and users also need to inspect and export reporting periods outside the default six months.
Implementation notes
Custom month inputs are inclusive for users, while requests preserve the existing half-open API contract. For example, July 2025 through June 2026 is sent as
2025-07-01through the exclusive boundary2026-07-01. Previous and next navigation preserve the selected number of months, and future periods remain disabled.This branch was created directly from
origin/master. A historical dashboard-tweaks commit also contained unrelated Review-app work, so only its Reports dashboard paths were retained here.Validation
yarn test:no-watch --runInBand src/apps/reports/src— 11 suites, 45 tests passedyarn lint— passedyarn run build— completed successfully (existing repository CSS-order and lint warnings remain non-blocking)