Skip to content

Commit

Permalink
fix: script on priority when script and input co-exist
Browse files Browse the repository at this point in the history
  • Loading branch information
abdul99ahad committed Dec 16, 2024
1 parent bee1318 commit d8e5e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/zeebe/util/feelUtility.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export function getResultContext(expression, variables = {}) {
* @returns {{ expression: String, unresolved: Array<String> }}}
*/
function getExpressionDetails(variable, origin) {
const expression = getIoExpression(variable, origin) || getScriptExpression(variable, origin);
const expression = getScriptExpression(variable, origin) || getIoExpression(variable, origin);

if (!expression) {
return;
Expand Down

0 comments on commit d8e5e57

Please sign in to comment.