@cubejs-client/vue3 0.33.59 → 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/vue3",
3
- "version": "0.33.59",
3
+ "version": "0.34.0",
4
4
  "engines": {},
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  "src"
29
29
  ],
30
30
  "dependencies": {
31
- "@cubejs-client/core": "^0.33.59",
31
+ "@cubejs-client/core": "^0.34.0",
32
32
  "@vue/compiler-sfc": "^3.0.11",
33
33
  "core-js": "^3.6.5",
34
34
  "flush-promises": "^1.0.2",
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "78cceac1bb80d56b93a532ee0a3b993491c1bde6"
83
+ "gitHead": "55e796e52bd276f839c5fa842b9eb821d363e77e"
84
84
  }
@@ -378,7 +378,7 @@ export default {
378
378
  this.chartType = chartType || this.chartType;
379
379
  this.pivotConfig = ResultSet.getNormalizedPivotConfig(
380
380
  validatedQuery,
381
- pivotConfig || this.pivotConfig
381
+ pivotConfig !== undefined ? pivotConfig : this.pivotConfig
382
382
  );
383
383
  this.copyQueryFromProps(validatedQuery);
384
384
  }