Skip to content

Commit

Permalink
feat: add user task implementation tooltip
Browse files Browse the repository at this point in the history
Closes #1032
  • Loading branch information
barmac committed Mar 21, 2024
1 parent f27a628 commit 3bb4f1d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/contextProvider/zeebe/TooltipProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ const TooltipProvider = {
);
},

'group-userTaskImplementation': (element) => {
const translate = useService('translate');

return (
<div>
{ translate('Implement a user task managed by Zeebe. To add a custom implementation, use a job worker. ')}
<a href="https://docs.camunda.io/docs/components/modeler/bpmn/user-tasks/#define-a-user-task" target="_blank" rel="noopener" title={ translate('User task documentation') }>
{ translate('Learn more.') }
</a>
</div>
);
},

'group-form': (element) => {
const translate = useService('translate');

Expand Down

0 comments on commit 3bb4f1d

Please sign in to comment.