From 29a187d36bdfb6f40f905de838254c2bb26cb70f Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sun, 15 Dec 2019 20:25:35 +0000 Subject: [PATCH] reverse order in transactions list. --- LNbits/static/app.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LNbits/static/app.js b/LNbits/static/app.js index 3ce06d1f..53981662 100644 --- a/LNbits/static/app.js +++ b/LNbits/static/app.js @@ -294,14 +294,15 @@ function drawChart(transactions) { var datime = convertTimestamp(tx.time) // make the transactions table - transactionsHTML += + transactionsHTML = "" + tx.memo + '' + datime + '' + parseFloat(tx.amount / 1000) + - '' + '' + + transactionsHTML // make the line chart balance += parseInt(tx.amount / 1000)