Skip to content

Commit

Permalink
Fixed failure to launch custom keyboard in send page
Browse files Browse the repository at this point in the history
  • Loading branch information
joemarct committed Nov 16, 2022
1 parent ef7f17d commit a824f12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/pages/transaction/send.vue
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ export default {
isValidLNSName: isNameLike,
readonlyState (state) {
this.amountInputState = state
if (this.amountInputState && this.online) {
if (this.amountInputState && this.$store.getters['global/getConnectivityStatus']) {
this.customKeyboardState = 'show'
}
},
Expand Down Expand Up @@ -1063,6 +1063,10 @@ export default {
vm.wallet = markRaw(wallet)
if (vm.network === 'sBCH') vm.wallet.sBCH.getOrInitWallet()
})
if (navigator.onLine) {
vm.onConnectivityChange(true)
}
},
created () {
Expand Down

0 comments on commit a824f12

Please sign in to comment.