fix(ui): ensure UI server can only be started once
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / CSTable.vue
index 49d576e51d0bb510b52c0741b87e165e9872cf95..b098c0e5558a61728e92030164071df9471a39fd 100644 (file)
@@ -21,7 +21,7 @@
     <tbody id="cs-table__body">
       <CSData
         v-for="chargingStation in chargingStations"
-        :key="chargingStation.stationInfo?.hashId"
+        :key="chargingStation.stationInfo?.chargingStationId"
         :charging-station="chargingStation"
       />
     </tbody>
@@ -29,7 +29,6 @@
 </template>
 
 <script setup lang="ts">
-import { defineProps } from 'vue'
 import CSData from '@/components/charging-stations/CSData.vue'
 import type { ChargingStationData } from '@/types'