Skip to content

Commit

Permalink
feat: rename "Zeebe user task" to "Camunda user task"
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaiir authored and barmac committed Dec 12, 2024
1 parent a85135c commit 6b3e0d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contextProvider/zeebe/TooltipProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const TooltipProvider = {

return (
<div>
{ translate('Implement a user task managed by Zeebe. To add a custom implementation, use a job worker. ')}
{ translate('Implement a user task managed by Camunda. 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 noreferrer" title={ translate('User task documentation') }>
{ translate('Learn more.') }
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function UserTaskImplementation(props) {
const getOptions = () => {

const options = [
{ value: ZEEBE_USER_TASK_IMPLEMENTATION_OPTION, label: translate('Zeebe user task') },
{ value: ZEEBE_USER_TASK_IMPLEMENTATION_OPTION, label: translate('Camunda user task') },
{ value: JOB_WORKER_IMPLEMENTATION_OPTION, label: translate('Job worker') }
];

Expand Down

0 comments on commit 6b3e0d7

Please sign in to comment.