Fix object data to be sent to fetch analytics data
This commit is contained in:
parent
1e66061b1e
commit
1a53511a34
1 changed files with 5 additions and 1 deletions
|
@ -36,7 +36,11 @@
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
data: { start_date: options.startDate }
|
data: {
|
||||||
|
cycle_analytics: {
|
||||||
|
start_date: options.startDate
|
||||||
|
}
|
||||||
|
}
|
||||||
}).done((data) => {
|
}).done((data) => {
|
||||||
this.decorateData(data);
|
this.decorateData(data);
|
||||||
this.initDropdown();
|
this.initDropdown();
|
||||||
|
|
Loading…
Reference in a new issue