Skip to content

Commit

Permalink
mutiInstance bug fix, fix #41
Browse files Browse the repository at this point in the history
  • Loading branch information
Nayacco committed Feb 18, 2021
1 parent 23829c6 commit 057b21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/components/nodePanel/property/multiInstance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default {
},
methods: {
updateElement() {
if (this.formData.isSequential !== null || this.formData.isSequential !== undefined) {
if (this.formData.isSequential !== null && this.formData.isSequential !== undefined) {
let loopCharacteristics = this.element.businessObject.get('loopCharacteristics')
if (!loopCharacteristics) {
loopCharacteristics = this.modeler.get('moddle').create('bpmn:MultiInstanceLoopCharacteristics')
Expand Down

0 comments on commit 057b21d

Please sign in to comment.