We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a54fd commit 8208a2bCopy full SHA for 8208a2b
1 file changed
lib/liquid-tags/indented-data-reference.js
@@ -30,7 +30,7 @@ module.exports = {
30
assert(parseInt(numSpaces) || numSpaces === '0', '"spaces=NUMBER" must include a number')
31
32
// Get the referenced value from the context
33
- const value = await this.liquid.evalValue(dataReference, context)
+ const value = await this.liquid.evalValue(`site.data.${dataReference}`, context)
34
35
// If nothing is found in the context, exit with nothing; this may
36
// feel weird and that we should throw an error, but this is "The Liquid Way TM"
0 commit comments