- {{ t('scenery.top-list.place', i + 1) }} - {{ value.dispatcherName }}
+ {{ t('scenery.top-list.place', i + 1) }} -
+ {{
+ value.dispatcherName
+ }}
{{ t('scenery.top-list.dispatch-count', value.count) }}
@@ -63,11 +69,13 @@ import { useMainStore } from '../../store/mainStore';
interface DispatcherTopCount {
dispatcherName: string;
+ dispatcherId: number;
count: number;
}
interface LikesTopCount {
dispatcherName: string;
+ dispatcherId: number;
sumRate: number;
}
@@ -203,5 +211,11 @@ async function fetchTopDispatchersList() {
padding: 0.25em;
background-color: #2b2b2b;
height: 100%;
+
+ line-height: 1.5em;
+
+ a {
+ font-weight: bold;
+ }
}