From ea029648a5c7bd943964fcad7782d490a1cff867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Fri, 7 Nov 2025 15:00:39 +0100 Subject: [PATCH] fix: stroke color on pie and default report name --- apps/start/src/components/report-chart/pie/chart.tsx | 4 ++-- apps/start/src/components/report/edit-report-name.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/start/src/components/report-chart/pie/chart.tsx b/apps/start/src/components/report-chart/pie/chart.tsx index 506b59ca..ad7b1054 100644 --- a/apps/start/src/components/report-chart/pie/chart.tsx +++ b/apps/start/src/components/report-chart/pie/chart.tsx @@ -100,8 +100,8 @@ export function Chart({ data }: Props) { return ( ); diff --git a/apps/start/src/components/report/edit-report-name.tsx b/apps/start/src/components/report/edit-report-name.tsx index 14b310fb..b0c767b1 100644 --- a/apps/start/src/components/report/edit-report-name.tsx +++ b/apps/start/src/components/report/edit-report-name.tsx @@ -65,7 +65,7 @@ const EditReportName = ({ name }: Props) => { className="flex cursor-pointer select-none items-center gap-2 text-xl font-medium h-8 group" onClick={() => setIsEditing(true)} > - {newName ?? 'Unnamed Report'} + {newName || 'Unnamed Report'}