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 = {
226226 </ a >
227227 </ div >
228228 ) ;
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+ ) ;
229242 }
230243} ;
231244
Original file line number Diff line number Diff line change @@ -217,8 +217,7 @@ function TaskDefinitionRetries(props) {
217217 feel : 'optional' ,
218218 getValue,
219219 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
222221 } ) ;
223222}
224223
You can’t perform that action at this time.
0 commit comments