Dodanie grupy dla kanałow tematycznych. Porządki w theme.css

This commit is contained in:
dm
2025-12-17 15:45:19 +01:00
parent 345fa23f84
commit 0203e95cfc
7 changed files with 252 additions and 207 deletions

View File

@@ -8,7 +8,7 @@ function formatMoney(amount, currency = "PLN") {
if (typeof amount !== "number" || Number.isNaN(amount)) return "";
try {
return new Intl.NumberFormat("pl-PL", {
style: "currency",
style: "",
currency,
maximumFractionDigits: 0,
}).format(amount);