ps-toolkit-ui 1.5.72 → 1.5.73

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.
@@ -7878,7 +7878,9 @@
7878
7878
  this.chart = Highcharts.chart(this.name + 'Chart', this.options);
7879
7879
  };
7880
7880
  ChartClass.prototype.destroy = function () {
7881
- this.chart.destroy();
7881
+ if (this.chart !== null) {
7882
+ this.chart.destroy();
7883
+ }
7882
7884
  };
7883
7885
  ChartClass.prototype.getSymbol = function (point) {
7884
7886
  var marker = null;