Skip to content

Commit 3633e3f

Browse files
author
Guillaume Chau
committed
1 parent 4afbd71 commit 3633e3f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/vue-apollo.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3313,7 +3313,7 @@ var ApolloProvider$1 = function () {
33133313
attachTo: 'window'
33143314
}, options);
33153315
var states = this.getStates({
3316-
exportNamespace: options.exportNamespace
3316+
exportNamespace: finalOptions.exportNamespace
33173317
});
33183318
var js = finalOptions.attachTo + '.' + finalOptions.globalName + ' = ' + JSON.stringify(states) + ';';
33193319
return js;

dist/vue-apollo.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-apollo.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3319,7 +3319,7 @@ var ApolloProvider$1 = function () {
33193319
attachTo: 'window'
33203320
}, options);
33213321
var states = this.getStates({
3322-
exportNamespace: options.exportNamespace
3322+
exportNamespace: finalOptions.exportNamespace
33233323
});
33243324
var js = finalOptions.attachTo + '.' + finalOptions.globalName + ' = ' + JSON.stringify(states) + ';';
33253325
return js;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-apollo",
3-
"version": "2.1.0-beta.20",
3+
"version": "2.1.0-beta.21",
44
"description": "Vue apollo integration",
55
"main": "dist/vue-apollo.umd.js",
66
"module": "dist/vue-apollo.esm.js",

src/apollo-provider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export class ApolloProvider {
147147
attachTo: 'window',
148148
}, options)
149149
const states = this.getStates({
150-
exportNamespace: options.exportNamespace,
150+
exportNamespace: finalOptions.exportNamespace,
151151
})
152152
const js = `${finalOptions.attachTo}.${finalOptions.globalName} = ${JSON.stringify(states)};`
153153
return js

0 commit comments

Comments
 (0)