From d7aa0eb3af0987ca0b9c10e1278e33da1afff6ef Mon Sep 17 00:00:00 2001 From: Lars Date: Sat, 28 Mar 2026 14:50:34 +0100 Subject: [PATCH] feat: show target_date in goal list next to target value - Start value already showed start_date in parentheses - Now target value also shows target_date in parentheses - Consistent UX: both dates visible at their respective values --- frontend/src/pages/GoalsPage.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/pages/GoalsPage.jsx b/frontend/src/pages/GoalsPage.jsx index b2c1368..fbc7288 100644 --- a/frontend/src/pages/GoalsPage.jsx +++ b/frontend/src/pages/GoalsPage.jsx @@ -695,6 +695,11 @@ export default function GoalsPage() {
Ziel:{' '} {goal.target_value} {goal.unit} + {goal.target_date && ( + + ({dayjs(goal.target_date).format('DD.MM.YY')}) + + )}