From 86b98390449195edaf89446f5dba274f3a4d23de Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 13 Apr 2026 22:31:29 +0200 Subject: [PATCH] Fix override name in catalog-graph README The entity card override example used `name: 'entity-relations'` but the actual extension uses `name: 'relations'`. Signed-off-by: Patrik Oldsberg Made-with: Cursor --- plugins/catalog-graph/README-alpha.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog-graph/README-alpha.md b/plugins/catalog-graph/README-alpha.md index 67fcf2b4b4..f5500e5b3f 100644 --- a/plugins/catalog-graph/README-alpha.md +++ b/plugins/catalog-graph/README-alpha.md @@ -199,7 +199,7 @@ export default createFrontendModule({ pluginId: 'catalog-graph', extensions: [ EntityCardBlueprint.make({ - name: 'entity-relations', + name: 'relations', params: { loader: () => import('./components').then(m => ),