mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:35:48 +08:00
9554d9c56a
- tooltips - revert chart title UI - reduce period chooser font-size - localize dates of data points - fix a bug where multiple reports were loaded at the same time - fix a bug where % was not showing anymore - remove spacing at the top - remove loadingTitle feature (Loading...%report name%) incompatible with new hijack design
50 lines
983 B
JavaScript
50 lines
983 B
JavaScript
export default {
|
|
"/admin/reports/new_contributors": {
|
|
"report": {
|
|
"type": "new_contributors",
|
|
"title": "New Contributors",
|
|
"xaxis": "",
|
|
"yaxis": "",
|
|
"data": [{
|
|
"x": "2018-04-11",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-12",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-13",
|
|
"y": 60
|
|
}, {
|
|
"x": "2018-04-14",
|
|
"y": 60
|
|
}, {
|
|
"x": "2018-04-15",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-16",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-17",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-19",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-18",
|
|
"y": 10
|
|
}, {
|
|
"x": "2018-04-20",
|
|
"y": 1
|
|
}],
|
|
"total": 121,
|
|
"start_date": "2018-03-26T00:00:00.000Z",
|
|
"end_date": "2018-04-25T23:59:59.999Z",
|
|
"category_id": null,
|
|
"group_id": null,
|
|
"prev30Days": null,
|
|
"labels": null,
|
|
"report_key": ""
|
|
}
|
|
}
|
|
};
|