Skip to content

Commit 499b763

Browse files
committed
fix: flip default of cancelRemainingInstances
1 parent 856fe0f commit 499b763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/provider/bpmn/properties/AdHocCompletionProps.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function AdHocCompletionProps(props) {
3232
{
3333
id: 'cancelRemainingInstances',
3434
component: CancelRemainingInstances,
35-
isEdited: (node) => node && !node.checked // the default value is true
35+
isEdited: (node) => node && !!node.checked // the default value is false
3636
},
3737
];
3838
}

0 commit comments

Comments
 (0)