Skip to content

Commit

Permalink
Fix typo in example code for injectComponent in Admin Panel API docs (#…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
pwizla authored Nov 13, 2024
1 parent e0e2044 commit 466dd5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docusaurus/docs/dev-docs/plugins/admin-panel-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
Expand Down

0 comments on commit 466dd5f

Please sign in to comment.