File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
src/provider/camunda-platform/properties Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -421,14 +421,26 @@ function VariableEvents(props) {
421
421
} ) ;
422
422
} ;
423
423
424
+ const tooltip = (
425
+ < div >
426
+ < p > { translate ( 'Specify more than one variable change event as a comma separated list. Variable change events are:' ) } </ p >
427
+ < ul >
428
+ < li > < code > create</ code > </ li >
429
+ < li > < code > update</ code > </ li >
430
+ < li > < code > delete</ code > </ li >
431
+ </ ul >
432
+ < a href = "https://docs.camunda.org/manual/latest/reference/bpmn20/custom-extensions/extension-attributes/#variableevents" target = "_blank" rel = "noopener" > { translate ( 'Documentation: Variable events' ) } </ a >
433
+ </ div >
434
+ ) ;
435
+
424
436
return < TextFieldEntry
425
437
element = { element }
426
438
id = "conditionVariableEvents"
427
439
label = { translate ( 'Variable events' ) }
428
- description = { translate ( 'Specify more than one variable change event as a comma separated list.' ) }
429
440
getValue = { getValue }
430
441
setValue = { setValue }
431
442
debounce = { debounce }
443
+ tooltip = { tooltip }
432
444
/> ;
433
445
}
434
446
You can’t perform that action at this time.
0 commit comments