We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
binding.type = property
For template properties with binding type property, if a property is present in "oldTemplate" and not present in "newTemplate" it will not be removed.
property
We do this for other binding types - ex: inputs - but we don't do it for these.
{ "name": "Demo", "id": "demo", "description": "Demo", "version": 1, "appliesTo": [ "bpmn:ServiceTask" ], "properties": [ { "label": "Implementation Type", "type": "Hidden", "value": "${demoDelegate}", "binding": { "type": "property", "name": "camunda:delegateExpression" } } ] }
{ "name": "Demo", "id": "demo", "description": "Demo", "version": 2, "appliesTo": [ "bpmn:ServiceTask" ], "properties": [ { "label": "Implementation Type", "type": "Hidden", "value": "external", "binding": { "type": "property", "name": "camunda:type" } } ] }
v1
camunda:delegateExpression
v2
Old property camunda:delegateExpression should be removed
Related to SUPPORT-17418
The text was updated successfully, but these errors were encountered:
feat(element-templates): remove old template properties
a2c1b20
Related to camunda/camunda-modeler#3695
701afec
Fixed upstream via bpmn-io/bpmn-js-element-templates#4 Won't be included in 5.13.0 release
Sorry, something went wrong.
deps: update to @bpmn-io/properties-panel@3.1.0
ea35cd1
Closes #3695
d6b74da
nikku
smbea
Successfully merging a pull request may close this issue.
Describe the bug
For template properties with binding type
property
, if a property is present in "oldTemplate" and not present in "newTemplate" it will not be removed.We do this for other binding types - ex: inputs - but we don't do it for these.
Steps to reproduce
v1
v2
v1
to a service task ->camunda:delegateExpression
is in xmlv2
-> see thatcamunda:delegateExpression
hasn't been removedExpected behavior
Old property
camunda:delegateExpression
should be removedEnvironment
Additional context
Related to SUPPORT-17418
The text was updated successfully, but these errors were encountered: