Update wallet.js (#2569)

enable 'Read' button after 'Paste from clipboard' click
This commit is contained in:
schneimi 2024-07-09 14:57:03 +02:00 committed by GitHub
parent 0e1090b717
commit 760f11f1ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -542,7 +542,7 @@ new Vue({
pasteToTextArea: function () {
this.$refs.textArea.focus() // Set cursor to textarea
navigator.clipboard.readText().then(text => {
this.$refs.textArea.value = text
this.parse.data.request = text.trim()
})
}
},