diff --git a/src/views/ConfigurationGeneralView.vue b/src/views/ConfigurationGeneralView.vue index 39b6374b1..4776fc415 100644 --- a/src/views/ConfigurationGeneralView.vue +++ b/src/views/ConfigurationGeneralView.vue @@ -229,6 +229,10 @@ const addNewVehicleConnection = async (): Promise => { const setGlobalAddress = async (): Promise => { await globalAddressForm.value.validate() mainVehicleStore.globalAddress = newGlobalAddress.value + + // Temporary solution to actually set the address and connect the vehicle, since this is non-reactive today. + // TODO: Modify the store variables to be reactive. + location.reload() } const setWebRTCSignallingURI = async (): Promise => {