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 {