@alfresco/adf-core 8.4.0-17724113611 → 8.4.0-17732104912
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2022/adf-core.mjs
CHANGED
|
@@ -24628,8 +24628,8 @@ class FormBaseComponent {
|
|
|
24628
24628
|
}
|
|
24629
24629
|
else {
|
|
24630
24630
|
// Note: Activiti is using NAME field rather than ID for outcomes
|
|
24631
|
-
if (outcome.name) {
|
|
24632
|
-
this.completeTaskForm(outcome.name);
|
|
24631
|
+
if (outcome.name && outcome.id) {
|
|
24632
|
+
this.completeTaskForm(outcome.name, outcome.id);
|
|
24633
24633
|
return true;
|
|
24634
24634
|
}
|
|
24635
24635
|
}
|