Skip to content

Commit

Permalink
fix(all): Fix in AS IMAGE generation of single row.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jul 23, 2023
1 parent 272d647 commit 5827286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic.gblib/services/KeywordsExpressions.ts
Expand Up @@ -628,7 +628,7 @@ export class KeywordsExpressions {
keywords[i++] = [
/^\s*(set output)(\s*)(.*)/gim,
($0, $1, $2, $3) => {
return `await dk.setOutput ({pid: pid, value: ${$3}})`;
return `await dk.setOutput ({pid: pid, value: "${$3}}")`;
}
];

Expand Down

0 comments on commit 5827286

Please sign in to comment.