diff --git a/backend/endpoints/responses/stats.py b/backend/endpoints/responses/stats.py index 5873526a6..d19d1c21a 100644 --- a/backend/endpoints/responses/stats.py +++ b/backend/endpoints/responses/stats.py @@ -18,5 +18,5 @@ class StatsReturn(TypedDict): STATES: int SCREENSHOTS: int TOTAL_FILESIZE_BYTES: int - METADATA_COVERAGE: dict[int, list[MetadataCoverageItem]] - REGION_BREAKDOWN: dict[int, list[RegionBreakdownItem]] + METADATA_COVERAGE: dict[str, list[MetadataCoverageItem]] + REGION_BREAKDOWN: dict[str, list[RegionBreakdownItem]] diff --git a/frontend/src/components/Settings/ServerStats/PlatformsStats.vue b/frontend/src/components/Settings/ServerStats/PlatformsStats.vue index 2844a352a..b2bced2f4 100644 --- a/frontend/src/components/Settings/ServerStats/PlatformsStats.vue +++ b/frontend/src/components/Settings/ServerStats/PlatformsStats.vue @@ -187,7 +187,7 @@ function getCoveragePercent(matched: number, total: number): string {
- Roms + {{ t("setup.games") }}
{{ platform.rom_count }} @@ -345,7 +345,7 @@ function getCoveragePercent(matched: number, total: number): string { .size-bar-fill { height: 100%; - min-width: 2px; + min-width: 0; background: rgb(var(--v-theme-primary)); border-radius: 0 2px 2px 0; transition: width 0.3s ease;