feat: more small UI impreovemsnts

This commit is contained in:
Vlad Stan
2022-08-03 13:50:01 +03:00
parent 7f32139bcd
commit ded6df61b1
2 changed files with 36 additions and 15 deletions
@@ -49,6 +49,7 @@ new Vue({
authenticated: false,
showPasswordDialog: false,
showConsole: false,
sendingPsbt: false,
psbtSent: false
},
@@ -789,6 +790,7 @@ new Vue({
},
hwwSendPsbt: async function () {
try {
this.hww.sendingPsbt = true
await this.serial.writer.write(
COMMAND_SEND_PSBT + ' ' + this.payment.psbtBase64 + '\n'
)
@@ -808,6 +810,7 @@ new Vue({
},
handleSendPsbtResponse: function (res = '') {
this.hww.psbtSent = true
this.hww.sendingPsbt = false
},
hwwSignPsbt: async function () {
try {