diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue
index d7384fb..5f7fbd7 100644
--- a/src/components/StationsView/StationTable.vue
+++ b/src/components/StationsView/StationTable.vue
@@ -202,33 +202,31 @@
{{ station.onlineInfo?.currentUsers || 0 }}
/
- {{ station.onlineInfo?.maxUsers || 0 }}
+ {{ station.onlineInfo?.maxUsers || 0 }}
- {{ station.onlineInfo?.spawns.length || 0 }}
+ {{ station.onlineInfo?.spawns.length || 0 }}
|
-
+ |
{{ station.onlineInfo?.scheduledTrains?.length || 0 }}
- /
-
- {{ station.onlineInfo?.scheduledTrains?.filter((train) => train.stopInfo.confirmed).length || 0 }}
-
- /
+ |
+
+
{{ station.onlineInfo?.scheduledTrains?.filter((train) => !train.stopInfo.confirmed).length || 0 }}
|
-
+
+
+ {{ station.onlineInfo?.scheduledTrains?.filter((train) => train.stopInfo.confirmed).length || 0 }}
+
+ |
diff --git a/src/scripts/data/stationHeaderNames.ts b/src/scripts/data/stationHeaderNames.ts
index 70b1b75..0f954d6 100644
--- a/src/scripts/data/stationHeaderNames.ts
+++ b/src/scripts/data/stationHeaderNames.ts
@@ -1,13 +1,5 @@
-export const headIds = [
- 'station',
- 'min-lvl',
- 'status',
- 'dispatcher',
- 'dispatcher-lvl',
- 'routes',
- 'general',
-] as const;
+export const headIds = ['station', 'min-lvl', 'status', 'dispatcher', 'dispatcher-lvl', 'routes', 'general'] as const;
-export const headIconsIds = ['user', 'spawn', 'timetableAll', 'timetableConfirmed', 'timetableUnconfirmed'] as const;
+export const headIconsIds = ['user', 'spawn', 'timetableAll', 'timetableUnconfirmed', 'timetableConfirmed'] as const;
export type HeadIdsTypes = typeof headIds[number] | typeof headIconsIds[number];