Skip to content

Commit 2fb06e8

Browse files
author
Stephen McCann
committed
reformat scopedVarArray (This is a port of PR #29)
1 parent 5f8b795 commit 2fb06e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/datasource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ private injectVariables(target, scoped, range) {
295295
//scoped variables inject
296296
for(let k = 0; k < scopedVarArray.length; k++) {
297297
scopedValueArray.push(scoped[scopedVarArray[k]].value);
298-
scopedVarArray[k] = "${" + scopedVarArray[k] + '}';
298+
scopedVarArray[k] = "$" + scopedVarArray[k];
299299

300300
};
301301
//local variables inject (user variables)

0 commit comments

Comments
 (0)