diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f51c0e0f3..20b91ed548 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -869,7 +869,7 @@ jobs: cache: true - name: Install GoReleaser - uses: goreleaser/goreleaser-action@v5 + uses: goreleaser/goreleaser-action@v6.1.0 with: install-only: true diff --git a/App/FeatureSet/Dashboard/src/Components/Metrics/MetricsDashboard.tsx b/App/FeatureSet/Dashboard/src/Components/Metrics/MetricsDashboard.tsx index 2fa99cebfe..c163da40a0 100644 --- a/App/FeatureSet/Dashboard/src/Components/Metrics/MetricsDashboard.tsx +++ b/App/FeatureSet/Dashboard/src/Components/Metrics/MetricsDashboard.tsx @@ -21,7 +21,6 @@ import RouteMap, { RouteUtil } from "../../Utils/RouteMap"; import PageMap from "../../Utils/PageMap"; import Route from "Common/Types/API/Route"; import AppLink from "../AppLink/AppLink"; -import Includes from "Common/Types/BaseDatabase/Includes"; interface ServiceMetricSummary { service: Service; @@ -71,13 +70,11 @@ const MetricsDashboard: FunctionComponent = (): ReactElement => { name: true, unit: true, description: true, - }, - relationSelect: { services: { _id: true, name: true, serviceColor: true, - }, + } as any, }, limit: LIMIT_PER_PROJECT, skip: 0, @@ -106,9 +103,7 @@ const MetricsDashboard: FunctionComponent = (): ReactElement => { for (const metricService of metricServices) { const serviceId: string = - metricService._id?.toString() || - metricService.id?.toString() || - ""; + metricService._id?.toString() || metricService.id?.toString() || ""; let summary: ServiceMetricSummary | undefined = summaryMap.get(serviceId); @@ -285,7 +280,10 @@ const MetricsDashboard: FunctionComponent = (): ReactElement => { {serviceSummaries.map((summary: ServiceMetricSummary) => { return (