diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-11-21 23:16:18 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-11-21 23:16:18 -0500 |
commit | b9ab163344f1ed3a2232c7d273b20d86c25a2735 (patch) | |
tree | 042a9bba744d172a75823349805b0e96ac14c220 /app/Template/analytic/lead_cycle_time.php | |
parent | 25272afa9b383adbf22e1c7631f0b1f841fa8d0f (diff) |
Move chart task time column to components
Diffstat (limited to 'app/Template/analytic/lead_cycle_time.php')
-rw-r--r-- | app/Template/analytic/lead_cycle_time.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/analytic/lead_cycle_time.php b/app/Template/analytic/lead_cycle_time.php index eeb2c219..d5908096 100644 --- a/app/Template/analytic/lead_cycle_time.php +++ b/app/Template/analytic/lead_cycle_time.php @@ -12,10 +12,10 @@ <?php if (empty($metrics)): ?> <p class="alert"><?= t('Not enough data to show the graph.') ?></p> <?php else: ?> - <?= $this->app->component('chart-lead-cycle-time', array( + <?= $this->app->component('chart-project-lead-cycle-time', array( 'metrics' => $metrics, 'labelCycle' => t('Cycle Time'), - 'labelTime' => t('Lead Time'), + 'labelLead' => t('Lead Time'), )) ?> <form method="post" class="form-inline" action="<?= $this->url->href('AnalyticController', 'leadAndCycleTime', array('project_id' => $project['id'])) ?>" autocomplete="off"> |