docs: ui/web/README.md: fix link
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / CSTable.vue
index 53561516a20ab8981919dfb0a612d770a359becf..b4be09912e1c9e2b5a397b163d485b31fa98fec2 100644 (file)
@@ -1,5 +1,8 @@
 <template>
   <table id="cs-table">
+    <caption>
+      Charging stations
+    </caption>
     <thead id="cs-table__head">
       <tr class="cs-table__row">
         <th scope="col" class="cs-table__action-col">Action</th>
@@ -20,7 +23,7 @@
         v-for="chargingStation in props.chargingStations"
         :key="chargingStation.stationInfo?.hashId"
         :charging-station="chargingStation"
-        :idTag="props.idTag"
+        :id-tag="props.idTag"
       />
     </tbody>
   </table>
@@ -28,7 +31,7 @@
 
 <script setup lang="ts">
 import CSData from './CSData.vue';
-import type { ChargingStationData } from '@/types/ChargingStationType';
+import type { ChargingStationData } from '@/types';
 
 const props = defineProps<{
   chargingStations: ChargingStationData[];