Skip to content

Commit

Permalink
Merge pull request #159 from mdenet/fix/conversion-value-bug
Browse files Browse the repository at this point in the history
For metamodel-free conversion, ensure we're converting the correct value
  • Loading branch information
szschaler authored Jan 9, 2024
2 parents 5cec457 + 3422390 commit d5f26e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/src/Playground.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ function invokeActionFunction(functionId, parameterMap){

if(metamodelId==null){
// Convert with no metamodel to consider
convertedValue = convert( givenParameter.val, givenParameter.type,
convertedValue = convert( givenParameter.value, givenParameter.type,
actionFunctionParam.type, paramName ); // TODO issue #58 remove paramName

} else {
Expand Down

0 comments on commit d5f26e0

Please sign in to comment.