From 4f8b13b23d66ca2c1ed9294fac946ea503b73b7c Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 3 Apr 2022 14:52:30 -0500 Subject: [PATCH] Uncomment server configs from testing --- components/connection/ServerConnectForm.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/connection/ServerConnectForm.vue b/components/connection/ServerConnectForm.vue index ea3201e2..976e5219 100644 --- a/components/connection/ServerConnectForm.vue +++ b/components/connection/ServerConnectForm.vue @@ -105,9 +105,9 @@ export default { networkConnected() { return this.$store.state.networkConnected }, - // serverConnectionConfigs() { - // return this.deviceData ? this.deviceData.serverConnectionConfigs || [] : [] - // }, + serverConnectionConfigs() { + return this.deviceData ? this.deviceData.serverConnectionConfigs || [] : [] + }, lastServerConnectionConfigId() { return this.deviceData ? this.deviceData.lastServerConnectionConfigId : null },