From 2a41d690a455cbbfb85973de2b56ffdd2936a3b9 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 13 Mar 2023 14:21:45 +0100 Subject: [PATCH] add manifest to element --- .../backoffice/shared/components/workspace/workspace.element.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace.element.ts index 7d20fca2d2..000ffd4877 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace.element.ts @@ -15,6 +15,7 @@ export interface UmbRouteLocation { } export interface UmbWorkspaceEntityElement extends HTMLElement { + manifest: ManifestWorkspace; location: UmbRouteLocation; } @@ -51,6 +52,7 @@ export class UmbWorkspaceElement extends UmbLitElement { component: () => createExtensionElement(workspaceManifest), setup: (component: Promise, info: IRoutingInfo) => { component.then((element) => { + element.manifest = workspaceManifest; const location: UmbRouteLocation = { name: path.name, params: info.match.params,