From 5b7f06970574bcc794b6ef948c48b881eb22faa2 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 2 Sep 2025 14:21:01 +0200 Subject: [PATCH] fix: show first date in archived to created chart (#10598) Ensures that the first date of the data is also shown. Before: image After: image --- .../CreationArchiveChart/CreationArchiveChart.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx b/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx index 0be2d7b4b6..d8287f3bb1 100644 --- a/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx +++ b/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx @@ -176,6 +176,7 @@ export const CreationArchiveChart: FC = ({ grid: { display: false, }, + ticks: { source: 'data' }, }, y: { type: 'linear' as const,