From 512e21276c5c402f0eaddb1e3d01d1c8fcd1865f Mon Sep 17 00:00:00 2001 From: Ricearoni1245 Date: Fri, 13 Mar 2026 19:26:16 -0500 Subject: [PATCH] added tracking notes --- .env | 6 +++--- web/src/pages/TransactionsPage.tsx | 12 +++++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.env b/.env index 1cbf440..84fcc1a 100644 --- a/.env +++ b/.env @@ -31,9 +31,9 @@ EMAIL_FROM="SkyMoney Budget " EMAIL_BOUNCE_FROM=bounces@skymoneybudget.com EMAIL_REPLY_TO=support@skymoneybudget.com -UPDATE_NOTICE_VERSION=9 -UPDATE_NOTICE_TITLE="Rebalance tool bug correction" -UPDATE_NOTICE_BODY="Fixed bug issue where available budget value is stale in user sessions and wont read updated value properly." +UPDATE_NOTICE_VERSION=10 +UPDATE_NOTICE_TITLE="Tracking Notes for Expenses" +UPDATE_NOTICE_BODY="Notes for daily transactions are now tracked in the database and are displayed in the records page next to the correlating transaction." ALLOW_INSECURE_AUTH_FOR_DEV=false JWT_ISSUER=skymoney-api JWT_AUDIENCE=skymoney-web diff --git a/web/src/pages/TransactionsPage.tsx b/web/src/pages/TransactionsPage.tsx index 2e4e7c4..0cd783d 100644 --- a/web/src/pages/TransactionsPage.tsx +++ b/web/src/pages/TransactionsPage.tsx @@ -151,6 +151,7 @@ export default function TransactionsPage() { Date Type Category + Note Amount @@ -172,7 +173,12 @@ export default function TransactionsPage() { {prettyKind(t.kind)} - {t.categoryName ?? t.planName ?? t.note ?? "–"} + {t.categoryName ?? t.planName ?? "–"} + + + {t.note ?? "–"} + + @@ -190,7 +196,7 @@ export default function TransactionsPage() {
- {t.categoryName ?? t.planName ?? t.note ?? "–"} + {t.categoryName ?? t.planName ?? "–"} {t.note && (
- {t.note} + Note: {t.note}
)}