From 480087aa58307e1f577a48d2bf3d65ccb1c0b111 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Tue, 23 Apr 2024 15:13:59 +0200 Subject: [PATCH] fix document picker manifests --- .../documents/documents/property-editors/manifests.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/documents/property-editors/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/documents/property-editors/manifests.ts index c7f1d01021..a2131ca272 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/documents/property-editors/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/documents/property-editors/manifests.ts @@ -1,4 +1,4 @@ -import { manifest as documentPickerUI } from './document-picker/manifests.js'; -import type { ManifestPropertyEditorUi } from '@umbraco-cms/backoffice/extension-registry'; +import { manifests as documentPickerManifests } from './document-picker/manifests.js'; +import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; -export const manifests: Array = [documentPickerUI]; +export const manifests: Array = [...documentPickerManifests];