diff --git a/lib/features/modeling/ElementFactory.js b/lib/features/modeling/ElementFactory.js index e45478cd..df367a21 100644 --- a/lib/features/modeling/ElementFactory.js +++ b/lib/features/modeling/ElementFactory.js @@ -18,6 +18,8 @@ function ElementFactory(bpmnFactory) { ElementFactory.prototype = Object.create(BaseElementFactory.prototype); +ElementFactory.$inject = [ 'bpmnFactory' ]; + module.exports = ElementFactory;