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

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 () {