We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 896f6fc commit af5e88bCopy full SHA for af5e88b
packages/runtime/src/internal/fulfilStoryboard.ts
@@ -115,7 +115,7 @@ function replaceSegues(
115
return param
116
? typeof param.value === "string" && isEvaluable(param.value)
117
? `\${${param.value.replace(/^\s*<%[~=]?\s|\s%>\s*$/g, "")}}`
118
- : String(param.value).replace(/`/g, "\\`")
+ : String(param.value).replace(/[`\\]/g, "\\$&")
119
: `\${PATH.${key}}`;
120
});
121
(handlers as BrickEventsMap)[key] = {
0 commit comments