From 03465a148786397a40826c61cbb2fc3d96cdcc36 Mon Sep 17 00:00:00 2001 From: Spythere Date: Mon, 4 Mar 2024 20:31:54 +0100 Subject: [PATCH] poprawki --- src/components/StationsView/StationTable.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue index 6ecd927..ffd4b39 100644 --- a/src/components/StationsView/StationTable.vue +++ b/src/components/StationsView/StationTable.vue @@ -246,17 +246,17 @@ - {{ station.onlineInfo?.currentUsers || 0 }} + {{ station.onlineInfo?.currentUsers ?? '-' }} / - {{ station.onlineInfo?.maxUsers || 0 }} + {{ station.onlineInfo?.maxUsers ?? '-' }} - - {{ station.onlineInfo?.dispatcherRate ?? 0 }} + + {{ station.onlineInfo?.dispatcherRate ?? '-' }} - {{ station.onlineInfo?.spawns.length ?? 0 }} + {{ station.onlineInfo?.spawns.length ?? '-' }} - {{ station.onlineInfo?.scheduledTrainCount.all }} + {{ station.onlineInfo?.scheduledTrainCount.all ?? '-' }} - {{ station.onlineInfo?.scheduledTrainCount.unconfirmed }} + {{ station.onlineInfo?.scheduledTrainCount.unconfirmed ?? '-' }} - {{ station.onlineInfo?.scheduledTrainCount.confirmed }} + {{ station.onlineInfo?.scheduledTrainCount.confirmed ?? '-' }}