Merge pull request #1094 from lnbits/fix/exportCSV-LNURLw

fix issue with export to CSV
This commit is contained in:
Vlad Stan 2022-11-17 15:19:44 +02:00 committed by GitHub
commit 96b8d5ed1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -290,8 +290,12 @@ new Vue({
})
}
},
exportCSV: function () {
LNbits.utils.exportCSV(this.paywallsTable.columns, this.paywalls)
exportCSV() {
LNbits.utils.exportCSV(
this.withdrawLinksTable.columns,
this.withdrawLinks,
'withdraw-links'
)
}
},
created: function () {