@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.

Make the top-level burndown chart in "Maniphest > Reports" show open tasks, not total tasks

Summary:
Ref T13279. See PHI1491. Currently, the top-level "Burnup Rate" chart in Maniphest shows total created tasks above the X-axis, without adjusting for closures.

This is unintended and not very useful. The filtered-by-project charts show the right value (cumulative open tasks, i.e. open minus close). Change the value to aggregate creation events and status change events.

Test Plan: Viewed top-level chart, saw the value no longer monotonically increasing.

Maniphest Tasks: T13279

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

+5 -1
+5 -1
src/applications/project/chart/PhabricatorProjectBurndownChartEngine.php
··· 53 53 $open_function = $this->newFunction( 54 54 array( 55 55 'accumulate', 56 - array('fact', 'tasks.open-count.create'), 56 + array( 57 + 'sum', 58 + array('fact', 'tasks.open-count.create'), 59 + array('fact', 'tasks.open-count.status'), 60 + ), 57 61 )); 58 62 59 63 $closed_function = $this->newFunction(