File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
provider/zeebe/properties Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -226,6 +226,19 @@ const TooltipProvider = {
226
226
</ a >
227
227
</ div >
228
228
) ;
229
+ } ,
230
+ 'taskDefinitionRetries' : ( element ) => {
231
+
232
+ const translate = useService ( 'translate' ) ;
233
+
234
+ return (
235
+ < div >
236
+ < p >
237
+ { translate ( 'The number of times the engine tries executing this activity if a worker signals a failure. The default is three.' ) } { ' ' }
238
+ < a href = "https://docs.camunda.io/docs/next/components/best-practices/development/dealing-with-problems-and-exceptions/#leveraging-retries" target = "_blank" rel = "noopener" > { translate ( 'Learn more.' ) } </ a >
239
+ </ p >
240
+ </ div >
241
+ ) ;
229
242
}
230
243
} ;
231
244
Original file line number Diff line number Diff line change @@ -217,8 +217,7 @@ function TaskDefinitionRetries(props) {
217
217
feel : 'optional' ,
218
218
getValue,
219
219
setValue,
220
- debounce,
221
- tooltip : translate ( 'Specifies the number of times the job is retried when a worker signals failure. The default is three.' )
220
+ debounce
222
221
} ) ;
223
222
}
224
223
You can’t perform that action at this time.
0 commit comments