]> 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>
Mon, 11 May 2026 21:13:13 +0000 (21:13 +0000)
committerGitHub <noreply@github.com>
Mon, 11 May 2026 21:13:13 +0000 (21:13 +0000)
ui/web/src/skins/classic/components/charging-stations/CSConnector.vue
ui/web/src/skins/classic/components/charging-stations/CSData.vue

index e2779eaca8053d99646c13cf831f8533694b9673..cc156377df87d9a73f97404946a7b1243e79d7f1 100644 (file)
         "
         :on="
           () => {
-            $router.push({
-              name: ROUTE_NAMES.START_TRANSACTION,
-              params: { hashId, chargingStationId, connectorId },
-              query: {
-                ...(evseId != null ? { evseId: String(evseId) } : {}),
-                ...(ocppVersion != null ? { ocppVersion } : {}),
-              },
-            }).catch(() => undefined)
+            $router
+              .push({
+                name: ROUTE_NAMES.START_TRANSACTION,
+                params: { hashId, chargingStationId, connectorId },
+                query: {
+                  ...(evseId != null ? { evseId: String(evseId) } : {}),
+                  ...(ocppVersion != null ? { ocppVersion } : {}),
+                },
+              })
+              .catch(() => undefined)
           }
         "
         :shared="true"
index a2dbfa000a87c915009138d3da2c871811bd7bf1..3913e25ac94e73bb98b2453dbd4c34fc12ff7501 100644 (file)
         "
         :on="
           () => {
-            $router.push({
-              name: ROUTE_NAMES.SET_SUPERVISION_URL,
-              params: {
-                hashId: chargingStation.stationInfo.hashId,
-                chargingStationId: chargingStation.stationInfo.chargingStationId,
-              },
-            }).catch(() => undefined)
+            $router
+              .push({
+                name: ROUTE_NAMES.SET_SUPERVISION_URL,
+                params: {
+                  hashId: chargingStation.stationInfo.hashId,
+                  chargingStationId: chargingStation.stationInfo.chargingStationId,
+                },
+              })
+              .catch(() => undefined)
           }
         "
         :shared="true"