Skip to content

Commit

Permalink
chore: change error message for zeebe user task
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac authored and merge-me[bot] committed Mar 1, 2024
1 parent 9b3ec5e commit aa92ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/utils/properties-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export function getErrorMessage(id, report) {
}

if (id === 'userTaskImplementation') {
return 'Not supported.';
return 'Supported only in Camunda 8.5 or newer.';
}

if (id === 'conditionExpression') {
Expand Down
2 changes: 1 addition & 1 deletion test/spec/utils/properties-panel.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ describe('utils/properties-panel', function() {
// then
expect(entryIds).to.eql([ 'userTaskImplementation' ]);

expectErrorMessage(entryIds[ 0 ], 'Not supported.', report);
expectErrorMessage(entryIds[ 0 ], 'Supported only in Camunda 8.5 or newer.', report);
});


Expand Down

0 comments on commit aa92ae9

Please sign in to comment.