Files
discourse-hledger/assets/javascripts/discourse/lib/hledger-report.js
T
2026-09-27 12:41:41 +02:00

8 lines
195 B
JavaScript

export function amountText(amounts) {
return (amounts || []).map((amount) => amount.display).join(", ");
}
export function depthClass(depth) {
return `--depth-${Math.min(depth || 0, 3)}`;
}