From eb33c7b193ce1470ea54c75df9b162af19eeeb5e Mon Sep 17 00:00:00 2001 From: Lone Iversen <108085781+loivsen@users.noreply.github.com> Date: Wed, 25 Jan 2023 14:31:16 +0100 Subject: [PATCH] umbExtensionRegistry import fix --- .../dashboards/health-check/dashboard-health-check.element.ts | 3 ++- .../health-check/views/health-check-overview.element.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/dashboard-health-check.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/dashboard-health-check.element.ts index 852d090f97..6e6b115681 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/dashboard-health-check.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/dashboard-health-check.element.ts @@ -5,7 +5,8 @@ import { UmbDashboardHealthCheckGroupElement } from './views/health-check-group. import { UmbHealthCheckDashboardContext } from './health-check-dashboard.context'; import { UmbHealthCheckContext } from './health-check.context'; import { UmbLitElement } from '@umbraco-cms/element'; -import { ManifestHealthCheck, ManifestTypes, umbExtensionsRegistry } from '@umbraco-cms/extensions-registry'; +import { ManifestHealthCheck, ManifestTypes } from '@umbraco-cms/extensions-registry'; +import { umbExtensionsRegistry } from '@umbraco-cms/extensions-api'; import { tryExecuteAndNotify } from '@umbraco-cms/resources'; import { HealthCheckGroup, HealthCheckResource } from '@umbraco-cms/backend-api'; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts index 54e796b104..9db9319459 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts @@ -6,7 +6,8 @@ import { UUIButtonState } from '@umbraco-ui/uui'; import { UmbHealthCheckDashboardContext } from '../health-check-dashboard.context'; import { UmbLitElement } from '@umbraco-cms/element'; -import { ManifestHealthCheck, umbExtensionsRegistry } from '@umbraco-cms/extensions-registry'; +import { ManifestHealthCheck } from '@umbraco-cms/extensions-registry'; +import { umbExtensionsRegistry } from '@umbraco-cms/extensions-api'; import './health-check-group-box-overview.element';