transactions.html omits non-payee currency and value table cells
All checks were successful
cicd / ci (push) Successful in 1m3s

This commit is contained in:
bel
2024-07-20 20:45:31 -06:00
parent 59205fba4c
commit 45c4d7b684
3 changed files with 47 additions and 5 deletions

View File

@@ -67,8 +67,8 @@
for (var delta of t) {
result += ` <tr>`
result += ` <td><span style="font-variant: petite-caps;">${delta.Name.split(":")[0]}</span><span style="opacity: 0.6;"> :${delta.Name.split(":").slice(1, 100).join(":")}</span></td>`
result += ` <td style="text-align: right; width: 2em;">${delta.Currency}</td>`
result += ` <td style="text-align: right; width: 5em;">${delta.Value}</td>`
result += ` <td style="text-align: right; width: 2em;">${delta.Payee ? delta.Currency : ""}</td>`
result += ` <td style="text-align: right; width: 5em;">${delta.Payee ? delta.Value : ""}</td>`
result += ` </tr>`
}
result += ` </table></td>`