@carbon/charts-vue 1.7.2 → 1.7.3

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/charts-vue.umd.js CHANGED
@@ -24412,7 +24412,7 @@ var tooltip_axis_AxisChartsTooltip = /** @class */ (function (_super) {
24412
24412
  return e.detail.items;
24413
24413
  }
24414
24414
  var data = e.detail.data;
24415
- if (!data.length || !data[0]) {
24415
+ if (!Array.isArray(data) || !data.length || !data[0]) {
24416
24416
  return [];
24417
24417
  }
24418
24418
  var options = this.getOptions();