How to show context pad in bpmn js

Code:

import ContextPadProvider from 'bpmn-js/lib/features/context-pad';
var bpmnModeler = new BpmnModeler({
      container: '#canvas',
      keyboard: {
        bindTo: window
      },
      propertiesPanel: {
        parent: '#properties'
      },
      additionalModules: [
        ContextPadProvider,
      ],
    });

but it’s not showing the following context pad
image

I was using

* {
    direction: 'rtl'
}

and it was the cause of the problem.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.