diff --git a/src/components/04_product-service/WorkManagementComponent.vue b/src/components/04_product-service/WorkManagementComponent.vue index edfe403c..831260be 100644 --- a/src/components/04_product-service/WorkManagementComponent.vue +++ b/src/components/04_product-service/WorkManagementComponent.vue @@ -537,15 +537,17 @@ watch(
{{ - !attributes.workflowId + !attributes.hasOwnProperty('workflowStep') ? $t('general.no', { msg: $t('flow.title') }) - : attributes.workflowStep?.length === 0 - ? $t('flow.noProcessStep') - : attributes.workflowStep?.every( - (s) => !s.attributes.properties?.length, - ) - ? $t('productService.service.noPropertiesYet') - : '' + : !attributes.workflowId + ? $t('general.no', { msg: $t('flow.title') }) + : attributes.workflowStep?.length === 0 + ? $t('flow.noProcessStep') + : attributes.workflowStep?.every( + (s) => !s.attributes.properties?.length, + ) + ? $t('productService.service.noPropertiesYet') + : '' }}