]> Piment Noir Git Repositories - e-mobility-charging-stations-simulator.git/commitdiff
[autofix.ci] apply automated fixes
authorautofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Fri, 17 Apr 2026 00:56:20 +0000 (00:56 +0000)
committerGitHub <noreply@github.com>
Fri, 17 Apr 2026 00:56:20 +0000 (00:56 +0000)
ui/web/src/components/charging-stations/CSData.vue
ui/web/src/views/ChargingStationsView.vue

index ef9f30ef9c904314602aa944b023f0810d25b83d..6420c0075a05df5d016e77e6b26b010193f75eb5 100644 (file)
 </template>
 
 <script setup lang="ts">
-import { type ChargingStationData, type ConnectorEntry, getWebSocketStateName, type Status } from 'ui-common'
+import {
+  type ChargingStationData,
+  type ConnectorEntry,
+  getWebSocketStateName,
+  type Status,
+} from 'ui-common'
 import { computed } from 'vue'
 import { useToast } from 'vue-toast-notification'
 
index c7c8dbc2067297e1278677f78d0ee9ec1e932cc4..8048de4637b1e13d37ef0c202f65f61b9178bb88 100644 (file)
@@ -182,7 +182,7 @@ const $toast = useToast()
 
 const { fetch: getSimulatorState } = useFetchData(
   () => $uiClient.simulatorState(),
-  (response) => {
+  response => {
     simulatorState.value = response.state as unknown as SimulatorState
   },
   'Error at fetching simulator state'
@@ -190,7 +190,7 @@ const { fetch: getSimulatorState } = useFetchData(
 
 const { fetch: getTemplates } = useFetchData(
   () => $uiClient.listTemplates(),
-  (response) => {
+  response => {
     $templates.value = response.templates as string[]
   },
   'Error at fetching charging station templates',
@@ -199,7 +199,7 @@ const { fetch: getTemplates } = useFetchData(
 
 const { fetch: getChargingStations } = useFetchData(
   () => $uiClient.listChargingStations(),
-  (response) => {
+  response => {
     $chargingStations.value = response.chargingStations as ChargingStationData[]
   },
   'Error at fetching charging stations',