We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47837c6 commit fcc85adCopy full SHA for fcc85ad
2 files changed
src/index.js
@@ -171,7 +171,7 @@ export function createObjects() {
171
for (let k in data) {
172
switch(k) {
173
case 'customCollection':
174
- m.metadata()['collection'] = data[k];
+ m.metadata()['collections'] = data[k];
175
default:
176
let snaked = changeCase.snakeCase(k);
177
m.metadata()[snaked] = data[k];
test/fixtures/shopify-data/templates/layout.liquid
@@ -6,7 +6,7 @@
6
<body>
7
8
<h1 class="hero__title">
9
- {{ collection | json }}
+ {{ collections | json }}
10
{{ customer_address | json }}
11
</h1>
12
0 commit comments