X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fcomponents%2Fcharging-stations%2FCSData.vue;h=48edd609b022ae81d6a8d03f6f4b2696baa5fd7a;hb=08b552892290e9558a41c3a58589baa9957ca917;hp=abc087626986a444effa9867c4eceb6dcae74682;hpb=2c5c744359d7b1c65da4eb255db1d67da7b604f3;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/components/charging-stations/CSData.vue b/ui/web/src/components/charging-stations/CSData.vue index abc08762..48edd609 100644 --- a/ui/web/src/components/charging-stations/CSData.vue +++ b/ui/web/src/components/charging-stations/CSData.vue @@ -146,7 +146,7 @@ const startChargingStation = (): void => { }) .catch((error: Error) => { $toast.error('Error at starting charging station') - console.error('Error at starting charging station', error) + console.error('Error at starting charging station:', error) }) } const stopChargingStation = (): void => { @@ -157,7 +157,7 @@ const stopChargingStation = (): void => { }) .catch((error: Error) => { $toast.error('Error at stopping charging station') - console.error('Error at stopping charging station', error) + console.error('Error at stopping charging station:', error) }) } const openConnection = (): void => { @@ -168,7 +168,7 @@ const openConnection = (): void => { }) .catch((error: Error) => { $toast.error('Error at opening connection') - console.error('Error at opening connection', error) + console.error('Error at opening connection:', error) }) } const closeConnection = (): void => { @@ -179,7 +179,7 @@ const closeConnection = (): void => { }) .catch((error: Error) => { $toast.error('Error at closing connection') - console.error('Error at closing connection', error) + console.error('Error at closing connection:', error) }) } const deleteChargingStation = (): void => { @@ -190,7 +190,7 @@ const deleteChargingStation = (): void => { }) .catch((error: Error) => { $toast.error('Error at deleting charging station') - console.error('Error at deleting charging station', error) + console.error('Error at deleting charging station:', error) }) }