do not export items by default

This commit is contained in:
Kevin Papst
2024-04-04 17:35:43 +02:00
parent 3e88a007d0
commit c1f5d3def4

View File

@@ -12,7 +12,7 @@ namespace App\Repository\Query;
class ExportQuery extends TimesheetQuery
{
private ?string $renderer = null;
private bool $markAsExported = true;
private bool $markAsExported = false;
public function __construct()
{