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 576e73b commit a9256d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic.gblib/services/KeywordsExpressions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export class KeywordsExpressions {
keywords[i++] = [
/^\s*((?:[a-z]+.?)(?:(?:\w+).)(?:\w+)*)\s*=\s*get config\s*(.*)/gim,
($0, $1, $2) => {
return `${$1} = await dk.getConfig ({pid: pid, ${$2}})`;
return `${$1} = await dk.getConfig ({pid: pid, name: ${$2}})`;
}
];

Expand Down

0 comments on commit a9256d8

Please sign in to comment.