Fix bug in daily project summary CSV export
This commit is contained in:
parent
0e83283ddc
commit
d84bf429d6
|
|
@ -3,8 +3,9 @@ Version 1.0.21 (unreleased)
|
|||
|
||||
Bug fixes:
|
||||
|
||||
* cs_CZ display the wrong locale in datetime picker
|
||||
* Datepicker is closed on blur event
|
||||
* Loading cs_CZ locale display the wrong language in datetime picker
|
||||
* Datepicker is closed unexpectedly on blur event
|
||||
* Fix bug in daily project summary CSV export
|
||||
|
||||
Version 1.0.20
|
||||
--------------
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class Export extends Base
|
|||
*/
|
||||
public function summary()
|
||||
{
|
||||
$this->common('ProjectDailyColumnStats', 'getAggregatedMetrics', t('Summary'), 'summary', t('Daily project summary export'));
|
||||
$this->common('projectDailyColumnStats', 'getAggregatedMetrics', t('Summary'), 'summary', t('Daily project summary export'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
namespace Kanboard\Core\Http;
|
||||
|
||||
use Kanboard\Core\Base;
|
||||
use Kanboard\Core\Csv;
|
||||
|
||||
/**
|
||||
* Response class
|
||||
|
|
|
|||
Loading…
Reference in New Issue