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 <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-04-13 22:31:29 +02:00
parent 8923d6def0
commit 86b9839044
+1 -1
View File
@@ -199,7 +199,7 @@ export default createFrontendModule({
pluginId: 'catalog-graph',
extensions: [
EntityCardBlueprint.make({
name: 'entity-relations',
name: 'relations',
params: {
loader: () =>
import('./components').then(m => <m.MyEntityRelationsCard />),