-
Type:
Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.0.X, Master
-
Fix Version/s: 7.0.0 DXP FP58, 7.0.0 DXP SP9, 7.0.X, 7.1.0 Beta 1, 7.1.X, 7.2.X, Master
-
Component/s: Business Productivity > Kaleo Designer
-
Branch Version/s:7.2.x, 7.1.x, 7.0.x
-
Backported to Branch:Committed
-
Story Points:1
-
Fix Priority:4
-
Git Pull Request:
When we add an XML document to the "Source" from Kaleo Designer and then go to the "View" mode, some content can be added to specific nodes, resulting in a different workflow definition than the one first given.
Steps to reproduce
- Go to Kaleo Designer.
- Go to the "Source (Kaleo XML)" mode.
- Replace the content of the editor with the content from single-approver-3.xml
.
- Go back to the "View" mode.
- Go back to the "Source (Kaleo XML)" mode.
- Compare the resulting XML document to the original one we got from single-approver-3.xml
.
Expected results
- The content we got from the editor would be identical to the one from single-approver-3.xml. At most, some formatting changes would be applied.
Actual results
- Where we had
<notification> <name>Creator Modification Notification</name> <template> <![CDATA[]]> </template> <template-language>freemarker</template-language> <notification-type>email</notification-type> <notification-type>user-notification</notification-type> <execution-type>onAssignment</execution-type> </notification>
now we have this:
<name>Creator Modification Notification</name> <template> <![CDATA[]]> </template> <template-language>freemarker</template-language> <notification-type>user-notification</notification-type> <recipients> <user/> </recipients> <execution-type>onAssignment</execution-type> </notification>
In this new result <notification-type>email</notification-type> line was deleted.