feat: set custom file name to the exported CSV
This commit is contained in:
parent
9f03d25a8c
commit
bd85e5dbe3
1 changed files with 5 additions and 1 deletions
|
|
@ -291,7 +291,11 @@ new Vue({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
exportCSV() {
|
exportCSV() {
|
||||||
LNbits.utils.exportCSV(this.withdrawLinksTable.columns, this.withdrawLinks)
|
LNbits.utils.exportCSV(
|
||||||
|
this.withdrawLinksTable.columns,
|
||||||
|
this.withdrawLinks,
|
||||||
|
'withdraw-links'
|
||||||
|
)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created: function () {
|
created: function () {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue