From 466dd5ff56412b9ab7013d6e752cf6cb3eee0fa1 Mon Sep 17 00:00:00 2001 From: Pierre Wizla Date: Wed, 13 Nov 2024 17:40:26 +0100 Subject: [PATCH] Fix typo in example code for injectComponent in Admin Panel API docs (#2287) * Fix outdated mention of Gold plan in SSO docs * Fix typo in example code for injectComponent in Admin Panel API docs * Fix unwanted commit from this PR --- docusaurus/docs/dev-docs/plugins/admin-panel-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus/docs/dev-docs/plugins/admin-panel-api.md b/docusaurus/docs/dev-docs/plugins/admin-panel-api.md index ae6a7ff88e..63e9967e65 100644 --- a/docusaurus/docs/dev-docs/plugins/admin-panel-api.md +++ b/docusaurus/docs/dev-docs/plugins/admin-panel-api.md @@ -447,7 +447,7 @@ Both the `injectComponent()` and `getPlugin('content-manager').injectComponent() export default { bootstrap(app) { - app.getPlugin('content-manager').injectComponent()('editView', 'informations', { + app.getPlugin('content-manager').injectComponent('editView', 'informations', { name: 'my-plugin-my-compo', Component: () => 'my-compo', });