@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Sort burnup data chronologically after merging synthetic and "real" data

Summary:
Ref T13020. See PHI273. See D18853. On `secure`, the chart looks less promising than it did locally, and is full of discontinuities:

{F5356544}

I think this is a sorting issue. But if I can't fake my way through this soon I'll maybe get the Fact engine running and use it to provide the data here, as a sort of half-step toward T1562?

Test Plan: Chart looks the same locally, will push and see if `secure` improves?

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13020

Differential Revision: https://secure.phabricator.com/D18854

+1
+1
src/applications/maniphest/controller/ManiphestReportController.php
··· 153 153 // Merge the synthetic rows into the real transactions. 154 154 $data = array_merge($create_rows, $data); 155 155 $data = array_values($data); 156 + $data = isort($data, 'dateCreated'); 156 157 157 158 $stats = array(); 158 159 $day_buckets = array();