diff --git a/site/src/pages/support/index.astro b/site/src/pages/support/index.astro
index 7451555..d86caf4 100644
--- a/site/src/pages/support/index.astro
+++ b/site/src/pages/support/index.astro
@@ -424,13 +424,13 @@ function renderBudget() {
header.innerHTML = `
${monthLabel(ym)}
${pct !== null
- ? `
`
+ ? ``
: ``}
- +${fmtEur(donated)}
+ donated+${fmtEur(donated)}
/
- −${fmtEur(spent)}
+ spent−${fmtEur(spent)}
/
- ${balance >= 0 ? '+' : '−'}${fmtEur(Math.abs(balance))}
+ balance${balance >= 0 ? '+' : '−'}${fmtEur(Math.abs(balance))}
${open ? '▲' : '▼'}`;
header.addEventListener('click', () => {
if (expandedMonths.has(ym)) expandedMonths.delete(ym); else expandedMonths.add(ym);