Fix report date rendering

This commit is contained in:
wuyanwanwu
2026-08-10 00:44:24 +08:00
parent 1e4adc63c0
commit c9db653aca
2 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ async function listReports(query) {
const total = countResult.rows[0].count;
params.push(pageSize, (page - 1) * pageSize);
const result = await pool.query(`
SELECT r.id, r.report_date, r.title, r.introduction, r.item_count,
SELECT r.id, r.report_date::text AS report_date, r.title, r.introduction, r.item_count,
r.status, r.email_status, r.created_at,
COALESCE(json_agg(json_build_object(
'id', a.id, 'title', a.title, 'translated_title', a.translated_title,