Merge pull request #1094 from lnbits/fix/exportCSV-LNURLw
fix issue with export to CSV
This commit is contained in:
commit
96b8d5ed1a
1 changed files with 6 additions and 2 deletions
|
|
@ -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 () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue