diff --git a/launcher/src/components/UI/plugin-installation/NetworkSelect.vue b/launcher/src/components/UI/plugin-installation/NetworkSelect.vue index 64ff8e8c2..7b8150887 100644 --- a/launcher/src/components/UI/plugin-installation/NetworkSelect.vue +++ b/launcher/src/components/UI/plugin-installation/NetworkSelect.vue @@ -18,7 +18,7 @@
constellation.includes(service.service)); if ( @@ -130,7 +116,8 @@ export default { this.show = !this.show; }, selectNetwork(name) { - this.currentNetwork = this.list.find((item) => item.name === name); + this.currentNetwork = this.networks.find((item) => item.name === name); + this.selectedNetwork = this.currentNetwork this.show = false; }, },