diff --git a/lib/utils/properties-panel.js b/lib/utils/properties-panel.js index 5910341..4c06e27 100644 --- a/lib/utils/properties-panel.js +++ b/lib/utils/properties-panel.js @@ -449,7 +449,7 @@ export function getErrorMessage(id, report) { } if (id === 'userTaskImplementation') { - return 'Not supported.'; + return 'Zeebe user task not supported.'; } if (id === 'conditionExpression') { diff --git a/test/spec/utils/properties-panel.spec.js b/test/spec/utils/properties-panel.spec.js index 432582b..001498f 100644 --- a/test/spec/utils/properties-panel.spec.js +++ b/test/spec/utils/properties-panel.spec.js @@ -1086,7 +1086,7 @@ describe('utils/properties-panel', function() { // then expect(entryIds).to.eql([ 'userTaskImplementation' ]); - expectErrorMessage(entryIds[ 0 ], 'Not supported.', report); + expectErrorMessage(entryIds[ 0 ], 'Zeebe user task not supported.', report); });