File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
src/contextProvider/zeebe Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ const TooltipProvider = {
42
42
43
43
return (
44
44
< div >
45
- { translate ( 'Evaluate a business rule, for example a DMN. To add a custom implementation, use a job worker. ' ) }
45
+ { translate ( 'Evaluate a business rule, for example a DMN decision . To add a custom implementation, use a job worker. ' ) }
46
46
< a href = "https://docs.camunda.io/docs/components/modeler/bpmn/business-rule-tasks/#defining-a-task" target = "_blank" rel = "noopener" title = { translate ( 'Business rule task documentation' ) } >
47
47
{ translate ( 'Learn more.' ) }
48
48
</ a >
@@ -101,6 +101,19 @@ const TooltipProvider = {
101
101
) ;
102
102
} ,
103
103
104
+ 'group-calledDecision' : ( element ) => {
105
+
106
+ const translate = useService ( 'translate' ) ;
107
+ return (
108
+ < div >
109
+ { translate ( 'Define the decision to evaluate and how to map back the evaluation result. ' ) }
110
+ < a href = "https://docs.camunda.io/docs/components/modeler/bpmn/business-rule-tasks/#defining-a-called-decision" target = "_blank" rel = "noopener" title = { translate ( 'Send task documentation' ) } >
111
+ { translate ( 'Learn more.' ) }
112
+ </ a >
113
+ </ div >
114
+ ) ;
115
+ } ,
116
+
104
117
'group-message' : ( element ) => {
105
118
const translate = useService ( 'translate' ) ;
106
119
You can’t perform that action at this time.
0 commit comments