diff --git a/src/components/04_product-service/WorkManagementComponent.vue b/src/components/04_product-service/WorkManagementComponent.vue index 831260be..3db9d52d 100644 --- a/src/components/04_product-service/WorkManagementComponent.vue +++ b/src/components/04_product-service/WorkManagementComponent.vue @@ -108,16 +108,6 @@ watch( } }, ); - -watch( - () => attributes.value.workflowId, - () => { - if (props.readonly) return; - attributes.value.workflowStep.forEach((s) => { - s.productsId = productItems.value.map((p) => p.id); - }); - }, -);