diff --git a/src/components/Global/StationStatusBadge.vue b/src/components/Global/StationStatusBadge.vue index 7e455a4..73e869b 100644 --- a/src/components/Global/StationStatusBadge.vue +++ b/src/components/Global/StationStatusBadge.vue @@ -88,8 +88,9 @@ $unknown: #b93c3c; .status-badge { border-radius: 1em; font-weight: 500; + text-wrap: nowrap; - padding: 0.2em 0.55em; + padding: 0.2rem 0.55rem; background-color: $online; @@ -106,13 +107,13 @@ $unknown: #b93c3c; &.no-limit { background-color: $no-limit; - font-size: 0.85em; + font-size: 0.9em; } &.not-signed, &.unavailable { background-color: $unav; - font-size: 0.85em; + font-size: 0.9em; } &.afk { @@ -125,7 +126,7 @@ $unknown: #b93c3c; background-color: $no-space; border: 1px solid white; color: white; - font-size: 0.85em; + font-size: 0.9em; } &.unknown, diff --git a/src/components/JournalView/JournalDispatchers/JournalDispatchersList.vue b/src/components/JournalView/JournalDispatchers/JournalDispatchersList.vue index 63839ed..9685dad 100644 --- a/src/components/JournalView/JournalDispatchers/JournalDispatchersList.vue +++ b/src/components/JournalView/JournalDispatchers/JournalDispatchersList.vue @@ -15,90 +15,118 @@ {{ $t('app.no-result') }} -
| {{ $t('journal.history-name') }} | -{{ $t('journal.history-hash') }} | -{{ $t('journal.history-dispatcher') }} | -{{ $t('journal.history-level') }} | -{{ $t('journal.history-rate') }} | -{{ $t('journal.history-region') }} | -{{ $t('journal.history-date') }} | - +
|---|---|---|---|---|---|---|
|
- |
- #{{ historyItem.stationHash }} | -
+ #{{ historyItem.stationHash }}
+
+ •
+
+ {{ historyItem.dispatcherLevel >= 2 ? historyItem.dispatcherLevel : 'L' }}
+
+
+
|
-
+
+
+
+
+ {{ $d(historyItem.timestampFrom) }}
+ {{ timestampToString(historyItem.timestampFrom) }}
+ -
- {{ historyItem.dispatcherLevel >= 2 ? historyItem.dispatcherLevel : 'L' }}
+ {{ $d(historyItem.timestampTo) }}
- |
- - {{ historyItem.dispatcherRate }} - | -- {{ - regions.find((r) => r.id == historyItem.region)?.value || '???' - }} - | -
-
- {{ $d(historyItem.timestampFrom) }}
+ {{ timestampToString(historyItem.timestampTo) }} ({{
+ calculateDuration(historyItem.currentDuration)
+ }})
+
+
+ |
-