Move hashId to stationInfo
[e-mobility-charging-stations-simulator.git] / src / ui / web / src / components / charging-stations / CSTable.vue
index c76d9e4d1eda6d9fc190eee8cd00f47c4fa42bd0..ccd7db14e4fc4862e7765e1822daf27c978c0ea4 100644 (file)
@@ -17,7 +17,7 @@
     <tbody id="cs-table__body">
       <CSData
         v-for="chargingStation in chargingStations"
-        :key="chargingStation.hashId"
+        :key="chargingStation.stationInfo.hashId"
         :charging-station="chargingStation"
         :idTag="props.idTag"
       />
@@ -50,8 +50,9 @@ const props = defineProps<{
 
 #cs-table__head,
 #cs-table__body {
+  height: fit-content;
   width: 100%;
-  min-width: 930px;
+  min-width: 100%;
   display: block;
 }