Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 73d1b2b

Browse files
authored
Merge pull request #6 from camunda-cloud/fix_user_task
Fix User Task
2 parents dd1c832 + 45f7151 commit 73d1b2b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@camunda-cloud/bpmnlint-plugin-camunda-cloud",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"description": "The bpmnlint camunda-cloud plug-in",
55
"main": "index.js",
66
"scripts": {

rules/no-user-task.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const {
99
module.exports = function() {
1010

1111
function check(node, reporter) {
12-
if (is(node, 'bpmn:userTask')) {
12+
if (is(node, 'bpmn:UserTask')) {
1313
reporter.report(node.id, 'This Task Type cannot be executed. Click on the Wrench icon to change the type.');
1414
}
1515
}

0 commit comments

Comments
 (0)