From 8a7724efa711f9c97d59673568017298b05ca46a Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 20 Mar 2023 13:10:15 +0100 Subject: [PATCH] add todo --- .../workspace-context/workspace-entity-context.interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace-context/workspace-entity-context.interface.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace-context/workspace-entity-context.interface.ts index 3ab4890af3..e066a7ec1a 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace-context/workspace-entity-context.interface.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace/workspace-context/workspace-entity-context.interface.ts @@ -2,7 +2,7 @@ import type { UmbWorkspaceContextInterface } from './workspace-context.interface export interface UmbEntityWorkspaceContextInterface extends UmbWorkspaceContextInterface { getEntityKey(): string | undefined; // COnsider if this should go away now that we have getUnique() - getEntityType(): string; + getEntityType(): string; // TODO: consider of this should be on the repository because a repo is responsible for one entity type getData(): T; save(): Promise; }