Merge branch '22892-cycle-analytics-date-filter-is-not-working' into 'master'
Resolve "Cycle analytics date filter is not working" Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/22892 See merge request !6906
This commit is contained in:
commit
7dd21a8bfd
2 changed files with 6 additions and 1 deletions
|
@ -32,6 +32,7 @@ Please view this file on the master branch, on stable branches it's out of date.
|
|||
- Update duration at the end of pipeline
|
||||
- ExpireBuildArtifactsWorker query builds table without ordering enqueuing one job per build to cleanup
|
||||
- Add group level labels. (!6425)
|
||||
- Fix Cycle analytics not showing correct data when filtering by date. !6906
|
||||
- Add an example for testing a phoenix application with Gitlab CI in the docs (Manthan Mallikarjun)
|
||||
- Cancelled pipelines could be retried. !6927
|
||||
- Updating verbiage on git basics to be more intuitive
|
||||
|
|
|
@ -36,7 +36,11 @@
|
|||
method: 'GET',
|
||||
dataType: 'json',
|
||||
contentType: 'application/json',
|
||||
data: { start_date: options.startDate }
|
||||
data: {
|
||||
cycle_analytics: {
|
||||
start_date: options.startDate
|
||||
}
|
||||
}
|
||||
}).done((data) => {
|
||||
this.decorateData(data);
|
||||
this.initDropdown();
|
||||
|
|
Loading…
Reference in a new issue