fix: escape < character in donation SVG

This commit is contained in:
LukeGus
2026-06-29 15:11:29 -05:00
parent 72e5ff5a64
commit a46f2f1343
+1 -1
View File
@@ -80,7 +80,7 @@ jobs:
pct = min(total / goal * 100, 100) if goal > 0 else 0
if total < 1:
display = '< $1'
display = '&lt; $1'
else:
display = f'${math.floor(total):,}'