From ba9162d462df881737cb37fb8c5a1e3ea0b9564c Mon Sep 17 00:00:00 2001 From: Rafael Araujo Lehmkuhl Date: Tue, 26 Sep 2023 17:44:39 -0300 Subject: [PATCH] Refresh page after setting new global address This is a temporary fix for the problem of setting a new global address and the configuration not being done. --- src/views/ConfigurationGeneralView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/ConfigurationGeneralView.vue b/src/views/ConfigurationGeneralView.vue index 39b6374b1..8446ee26b 100644 --- a/src/views/ConfigurationGeneralView.vue +++ b/src/views/ConfigurationGeneralView.vue @@ -229,6 +229,7 @@ const addNewVehicleConnection = async (): Promise => { const setGlobalAddress = async (): Promise => { await globalAddressForm.value.validate() mainVehicleStore.globalAddress = newGlobalAddress.value + location.reload() } const setWebRTCSignallingURI = async (): Promise => {