Skip to content

Commit db48ab6

Browse files
author
Guillaume Chau
committed
chore: v3.0.0-beta.22
1 parent f27a54e commit db48ab6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

dist/vue-apollo.esm.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1541,7 +1541,7 @@ var CApolloQuery = {
15411541
} else {
15421542
result = [result].concat(this.$slots.default);
15431543
}
1544-
return this.tag ? h(this.tag, result) : result;
1544+
return this.tag ? h(this.tag, result) : result[0];
15451545
}
15461546
};
15471547

@@ -1691,7 +1691,7 @@ var CApolloMutation = {
16911691
} else {
16921692
result = [result].concat(this.$slots.default);
16931693
}
1694-
return this.tag ? h(this.tag, result) : result;
1694+
return this.tag ? h(this.tag, result) : result[0];
16951695
}
16961696
};
16971697

@@ -1896,7 +1896,7 @@ function install(Vue, options) {
18961896
ApolloProvider.install = install;
18971897

18981898
// eslint-disable-next-line no-undef
1899-
ApolloProvider.version = "3.0.0-beta.21";
1899+
ApolloProvider.version = "3.0.0-beta.22";
19001900

19011901
// Apollo provider
19021902
var ApolloProvider$1 = ApolloProvider;

0 commit comments

Comments
 (0)