From 30d99fa7d7f8430d1df337814e91e19466edce71 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 3 Apr 2026 14:50:27 +0200 Subject: [PATCH] refactor(webui): remove redundant CSTable re-mount on toggle The @clicked handler on the Add Charging Stations toggle forced a CSTable re-mount on every click. This is unnecessary since watch($chargingStations) already handles re-renders when data changes via WS server notifications. --- ui/web/src/views/ChargingStationsView.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ui/web/src/views/ChargingStationsView.vue b/ui/web/src/views/ChargingStationsView.vue index 8034654f..87623609 100644 --- a/ui/web/src/views/ChargingStationsView.vue +++ b/ui/web/src/views/ChargingStationsView.vue @@ -82,11 +82,6 @@ } " :shared="true" - @clicked=" - () => { - state.renderChargingStations = randomUUID() - } - " > Add Charging Stations -- 2.53.0