mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 14:00:56 +01:00
Fix an issue where the Maniphest burnup chart was trying to render a non-View object
Summary: See PHI1714. This code is incorrectly rendering the chart panel twice, sort of, and passing a non-View object to rendering. After D21044, this fatals by raising an exception in rendering. Test Plan: Loaded page, no more exception. Differential Revision: https://secure.phabricator.com/D21185
This commit is contained in:
parent
f21f1d8ab9
commit
b648a85841
1 changed files with 3 additions and 3 deletions
|
@ -398,15 +398,15 @@ final class ManiphestReportController extends ManiphestController {
|
|||
->setProjects($projects)
|
||||
->buildChartPanel();
|
||||
|
||||
$chart_panel = $panel->setName(pht('Burnup Rate'));
|
||||
$panel->setName(pht('Burnup Rate'));
|
||||
|
||||
$chart_view = id(new PhabricatorDashboardPanelRenderingEngine())
|
||||
->setViewer($viewer)
|
||||
->setPanel($chart_panel)
|
||||
->setPanel($panel)
|
||||
->setParentPanelPHIDs(array())
|
||||
->renderPanel();
|
||||
|
||||
return array($filter, $chart_view, $panel);
|
||||
return array($filter, $chart_view);
|
||||
}
|
||||
|
||||
private function renderReportFilters(array $tokens, $has_window) {
|
||||
|
|
Loading…
Reference in a new issue