From dce468cace302654f163feabda48f80a60f546e6 Mon Sep 17 00:00:00 2001 From: Pasha8914 Date: Wed, 15 Jun 2022 15:11:23 +1000 Subject: [PATCH] fix: fill customRpc field while modal reopening --- components/Settings.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/Settings.vue b/components/Settings.vue index ae24b38..f39ecbd 100644 --- a/components/Settings.vue +++ b/components/Settings.vue @@ -99,7 +99,9 @@ export default { this.selectedRpc = this.rpc.name if (this.selectedRpc === 'custom') { - this.customRpcUrl = this.rpc.url + this.$nextTick(() => { + this.customRpcUrl = this.rpc.url + }) } this.checkRpc(this.rpc)