Skip to content

Commit

Permalink
fix: don't use variable expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
Caele committed Aug 17, 2022
1 parent f52e69b commit b81b10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/serve/web/components/property-panel/Variable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? (
Expand Down

0 comments on commit b81b10e

Please sign in to comment.