feat: adjust Trip*Updates page

This commit is contained in:
dancingCycle 2023-12-22 08:31:18 +01:00
parent bb6c42772e
commit 2634cda4b7
4 changed files with 20 additions and 4 deletions

View File

@ -9,12 +9,15 @@ export default function TableEntries ({array}) {
<tr
key={item.trip_id}
>
<td>{item.agency_name}</td>
<td>{item.agency_id}</td>
<td>{item.route_id}</td>
<td>{item.route_short_name}</td>
<td>{item.service_id}</td>
<td>{item.trip_id}</td>
<td>{item.trip_short_name}</td>
<td>{item.trip_headsign}</td>
<td>{item.timestamp_pgsql}</td>
<td>{item.route_id}</td>
<td>{item.route_short_name}</td>
</tr>
);
});

View File

@ -14,12 +14,15 @@ export default function TripUpdatesRouteDayTable ({array, title}){
<table>
<thead>
<tr>
<th>agency_name</th>
<th>agency_id</th>
<th>route_id</th>
<th>route_short_name</th>
<th>service_id</th>
<th>trip_id</th>
<th>trip_short_name</th>
<th>trip_headsign</th>
<th>timestamp_pgsql</th>
<th>route_id</th>
<th>route_short_name</th>
</tr>
</thead>
<tbody>

View File

@ -9,6 +9,11 @@ export default function TableEntries ({array}) {
<tr
key={item.trip_id}
>
<td>{item.agency_name}</td>
<td>{item.agency_id}</td>
<td>{item.route_id}</td>
<td>{item.route_short_name}</td>
<td>{item.service_id}</td>
<td>{item.trip_id}</td>
<td>{item.trip_short_name}</td>
<td>{item.trip_headsign}</td>

View File

@ -14,6 +14,11 @@ export default function TripsRouteDayTable ({array, title}){
<table>
<thead>
<tr>
<th>agency_name</th>
<th>agency_id</th>
<th>route_id</th>
<th>route_short_name</th>
<th>service_id</th>
<th>trip_id</th>
<th>trip_short_name</th>
<th>trip_headsign</th>