UI: paste payment request from clipboard (#1845)

* paste payment request from clipboard

* remove unelevated
This commit is contained in:
callebtc
2023-08-02 12:42:23 +01:00
committed by GitHub
parent 9f40b3cdbd
commit 9bc8a9db55
5 changed files with 20 additions and 2 deletions
+5
View File
@@ -795,6 +795,11 @@ new Vue({
field: 'pending'
})
LNbits.utils.exportCSV(columns, this.payments)
},
pasteToTextArea: function () {
navigator.clipboard.readText().then(text => {
this.$refs.textArea.value = text
})
}
},
watch: {