From b81b10ed98bff7dc60dab57bda4907ee82ac9e6f Mon Sep 17 00:00:00 2001 From: caele Date: Wed, 17 Aug 2022 13:06:48 +0200 Subject: [PATCH] fix: don't use variable expansion --- commands/serve/web/components/property-panel/Variable.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/serve/web/components/property-panel/Variable.jsx b/commands/serve/web/components/property-panel/Variable.jsx index 16f960ce6..bfb5060b5 100644 --- a/commands/serve/web/components/property-panel/Variable.jsx +++ b/commands/serve/web/components/property-panel/Variable.jsx @@ -43,7 +43,7 @@ export default function Variable({ property, value, target, changed, app }) { const handleChange = (e) => { setS(e.target.value); target[property].name = e.target.value; - target[property].value = { qStringExpression: { qExpr: `$(${e.target.value})` } }; + target[property].value = { qStringExpression: { qExpr: `[${e.target.value}]` } }; changed(); }; return l.length === 0 ? (