How to handle Content Manager APIs in JavaScript

The trick is to look into other githubs to understand the strapi documentation :smile: . A simple change of line app.getPlugin('content-manager').apis.addEditViewSidePanel(SqlJobPanel); to app.getPlugin('content-manager').apis.addEditViewSidePanel([SqlJobPanel]); because addEditViewSidePanel is awaiting an array ( - brackets), did the trick.

regards,
Sven