X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fviews%2FChargingStationsView.vue;h=cbd8a34ba64bf13ad17f8e57a679cb67aa455c63;hb=3eea3ebcd6172a2928aba166e26d5f06cd4dbe42;hp=7ffefe76e51d893a2bcc103e21c02ec9635d9d25;hpb=421fcdc9c9e7e9864147223a079d76c8b34810fc;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/views/ChargingStationsView.vue b/ui/web/src/views/ChargingStationsView.vue index 7ffefe76..cbd8a34b 100644 --- a/ui/web/src/views/ChargingStationsView.vue +++ b/ui/web/src/views/ChargingStationsView.vue @@ -73,15 +73,15 @@ @@ -118,7 +118,7 @@ const clearChargingStations = (): void => { clearToggleButtons() app!.appContext.config.globalProperties.$chargingStations = [] state.value.renderAddChargingStations = randomUUID() - state.value.renderChargingStationsList = randomUUID() + state.value.renderChargingStations = randomUUID() } const initializeWSEventListeners = () => { @@ -139,7 +139,7 @@ const initializeWSEventListeners = () => { }) loadChargingStations(() => { state.value.renderAddChargingStations = randomUUID() - state.value.renderChargingStationsList = randomUUID() + state.value.renderChargingStations = randomUUID() }) }) app?.appContext.config.globalProperties.$uiClient.registerWSEventListener( @@ -158,7 +158,7 @@ onMounted(() => { const state = ref({ renderAddChargingStations: randomUUID(), - renderChargingStationsList: randomUUID(), + renderChargingStations: randomUUID(), loading: false, uiServerIndex: getFromLocalStorage('uiServerConfigurationIndex', 0) })