X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fcomponents%2Fcharging-stations%2FCSData.vue;h=48edd609b022ae81d6a8d03f6f4b2696baa5fd7a;hb=16c46962f43a692c996b1c89a94dc572fea52d63;hp=abc087626986a444effa9867c4eceb6dcae74682;hpb=84ec8d3464903cfa8259ff622bff2b19b5c47132;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) }) }