From 25b15d84329c69c73dce4c359d19a3e7544dbdb3 Mon Sep 17 00:00:00 2001 From: NguyenND Date: Mon, 1 Jun 2026 15:47:14 -0400 Subject: [PATCH] 06/01 Fix report template issue --- app/templates/reports/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/reports/index.html b/app/templates/reports/index.html index 36aeb8f..4f83d89 100644 --- a/app/templates/reports/index.html +++ b/app/templates/reports/index.html @@ -253,7 +253,7 @@ const fmtCur = v => sym + Math.abs(v).toLocaleString(undefined, {minimumFraction data: { labels: {{ nw_history.labels | tojson }}, datasets: [ - { label:'Net Worth', data: {{ nw_history.values | tojson }}, borderColor:'#3b82f6', backgroundColor:'#3b82f611', borderWidth:2, pointRadius:3, tension:.3, fill:true }, + { label:'Net Worth', data: {{ nw_history['values'] | tojson }}, borderColor:'#3b82f6', backgroundColor:'#3b82f611', borderWidth:2, pointRadius:3, tension:.3, fill:true }, { label:'Assets', data: {{ nw_history.assets | tojson }}, borderColor:'#10b981', borderWidth:1.5, pointRadius:2, tension:.3, fill:false, borderDash:[4,3] }, ] },