build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / CSTable.vue
index 071a4c5b2a3f97468649364fef1833e60ab11ace..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>
@@ -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[];