From 5c905ea54dcc3a27ecd50ac9782cfa582e3cb045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 20 Dec 2022 15:15:55 +0100 Subject: [PATCH] note --- .../shared/workspace-context/workspace-node.context.ts | 2 +- .../shared/workspace-context/workspace-with-store.context.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-node.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-node.context.ts index 763890e2ed..95f6126798 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-node.context.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-node.context.ts @@ -5,7 +5,7 @@ import { UmbNotificationDefaultData, UmbNotificationService } from "@umbraco-cms import { ContentTreeItem } from "@umbraco-cms/backend-api"; import { UmbContextConsumer } from "@umbraco-cms/context-api"; -// TODO: Consider if its right to have this many WorkspaceContext +// TODO: Consider if its right to have this many class-inheritance of WorkspaceContext export class UmbWorkspaceNodeContext> extends UmbWorkspaceWithStoreContext { protected _notificationService?: UmbNotificationService; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-with-store.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-with-store.context.ts index d17b42c27d..4cbd633d1d 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-with-store.context.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-context/workspace-with-store.context.ts @@ -4,6 +4,7 @@ import { UmbContextConsumer } from "@umbraco-cms/context-api"; import { UmbDataStoreBase } from "@umbraco-cms/stores/store"; import { ContentTreeItem } from "@umbraco-cms/backend-api"; +// TODO: Consider if its right to have this many class-inheritance of WorkspaceContext export abstract class UmbWorkspaceWithStoreContext> extends UmbWorkspaceContext {