Configue plugin in cockpit

I’m trying to configue a plugin in “cockpit.processDefinition.view” plugin point in cockpit, but its not working, I tried other plugin points, they work fine, it’s just this one.

Here’s the configuration I’m using:

export default {
  id: "customProcessView",
  pluginPoint: "cockpit.processDefinition.view",
  priority: 0,
  render: (node) => {
    console.log("Hello, world!");
    node.innerHTML = `<h1>Hello, world!</h1>`
  }
};