bpmn-js extension which makes sure that `isExecutable` is set on `bpmn:Process`
npm install bpmn-js-executable-fix
A bpmn-js extension that makes sure that isExecutable property is either true or false for each bpmn:Process.
Install via npm.
``bash`
npm install bpmn-js-executable-fix
Add as additional module to bpmn-js.
`javascript
import BpmnModeler from 'bpmn-js/lib/Modeler';
import executableFixModule from 'bpmn-js-executable-fix';
const modeler = new BpmnModeler({
container: '#canvas',
additionalModules: [
executableFixModule
]
});
``
MIT