Skip to content

Commit

Permalink
chore(descriptionProvider): add description to decisionId field
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxTru committed Apr 11, 2022
1 parent 99947a1 commit 5c8f9f2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/contextProvider/zeebe/DescriptionProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ const DescriptionProvider = {
);
},

decisionId: (element) => {
const translate = useService('translate');

return (
<a href="https://docs.camunda.io/docs/reference/bpmn-processes/business-rule-tasks/business-rule-tasks/#defining-a-task" target="_blank" rel="noopener" title={ translate('Business rule task documentation') }>
{ translate('How to configure a business rule task') }
</a>
);

},

formType: (element) => {
const translate = useService('translate');

Expand Down

0 comments on commit 5c8f9f2

Please sign in to comment.