diff --git a/src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/workspace/relation-type/views/relation-type-detail-workspace-view.element.ts b/src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/workspace/relation-type/views/relation-type-detail-workspace-view.element.ts index 433925ea67..df6f2b55b7 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/workspace/relation-type/views/relation-type-detail-workspace-view.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/workspace/relation-type/views/relation-type-detail-workspace-view.element.ts @@ -117,6 +117,20 @@ export class UmbRelationTypeDetailWorkspaceViewElement extends UmbLitElement imp ]; private get _tableItems(): UmbTableItem[] { + if (this._relations.length === 0) { + return [ + { + id: 'no-relations', + data: [ + { + columnAlias: 'parent', + value: 'No relations found', + }, + ], + }, + ]; + } + return this._relations.map((relation) => { return { id: relation.unique,