Skip to content

Commit

Permalink
Do not assume action parameters are strings
Browse files Browse the repository at this point in the history
  • Loading branch information
szschaler committed Jan 30, 2024
1 parent 293cc79 commit 61224e5
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 @@ -872,7 +872,7 @@ function runAction(source, sourceButton) {
} else {
// No panel with ID so it use as the parameter value
const parameterValue = action.parameters[paramName];
console.log(`The panel ID starting with ${parameterValue.substring(0,10)}... not found. Using it as a the parameter value for ${paramName}.`);
// console.log(`The panel ID starting with ${parameterValue.substring(0,10)}... not found. Using it as a the parameter value for ${paramName}.`);
param.type = 'text';
param.value = parameterValue;
}
Expand Down

0 comments on commit 61224e5

Please sign in to comment.