feat: set custom file name to the exported CSV

This commit is contained in:
Vlad Stan 2022-11-17 15:05:12 +02:00
parent 9f03d25a8c
commit bd85e5dbe3

View File

@ -291,7 +291,11 @@ new Vue({
}
},
exportCSV() {
LNbits.utils.exportCSV(this.withdrawLinksTable.columns, this.withdrawLinks)
LNbits.utils.exportCSV(
this.withdrawLinksTable.columns,
this.withdrawLinks,
'withdraw-links'
)
}
},
created: function () {