fix(all): Fix in AS IMAGE generation of single row.

This commit is contained in:
Rodrigo Rodriguez 2023-07-23 17:47:36 -03:00
parent c2549aff08
commit c646b2d27b

View file

@ -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}"})`;
}
];