fix date column in export (#5308)

This commit is contained in:
Kevin Papst
2025-01-20 16:09:29 +01:00
committed by GitHub
parent f2fb338539
commit 9d7b418d99
7 changed files with 128 additions and 24 deletions

View File

@@ -14,7 +14,7 @@ final class DateFormatter implements CellFormatterInterface
public function formatValue(mixed $value): mixed
{
if ($value instanceof \DateTimeInterface) {
return $value->format('Y-m-d');
return $value;
}
if ($value === null) {