delete the edit box

In the modeler, how can I delete the edit box on the right? How do I remove the pop-up when I click on a node? Thank you

Hi @buzhanhua,

you will have to disable the ContextPad module. To do so, you can simply override it with an empty one

new BpmnModeler({
  additionalModules: [
    {
      contextPad: [ 'value', {} ]
    }
  ]
});

Thank you, but it didn’t solve my problem.Can you share some related documents with me?For example, cancel the default behavior of clicking on the node class library.