Skip to content

Commit 2203a54

Browse files
authored
fix(@cubejs-client/vue): Allow array props on query renderer to allow data blending usage (#1213). Thanks to @richipargo
1 parent 52f8eb5 commit 2203a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-client-vue/src/QueryRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { toPairs, fromPairs } from 'ramda';
33
export default {
44
props: {
55
query: {
6-
type: Object,
6+
type: [Object, Array],
77
default: () => ({}),
88
},
99
// TODO: validate with current react implementation

0 commit comments

Comments
 (0)