transactions.html omits non-payee currency and value table cells
All checks were successful
cicd / ci (push) Successful in 1m3s
All checks were successful
cicd / ci (push) Successful in 1m3s
This commit is contained in:
@@ -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>`
|
||||
|
||||
Reference in New Issue
Block a user