@evercam/ui 0.0.44 → 0.0.45-beta.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/dist/index.mjs CHANGED
@@ -5180,7 +5180,7 @@ const Wt = {
5180
5180
  this.zoomToStartAndEndDates();
5181
5181
  },
5182
5182
  eventsGroups() {
5183
- this.clearTimeline(), this.updateAndRedrawTimeline();
5183
+ this.updateAndRedrawTimeline();
5184
5184
  }
5185
5185
  },
5186
5186
  mounted() {
@@ -5247,7 +5247,7 @@ const Wt = {
5247
5247
  this.clearTimeline(), this.initTimeline(e, t);
5248
5248
  },
5249
5249
  clearTimeline() {
5250
- this.svg.remove(), this.countsByTimestamp = {};
5250
+ this.svg && this.svg.remove(), this.countsByTimestamp = {};
5251
5251
  },
5252
5252
  repositionSelectedTimestampCursor() {
5253
5253
  const e = this.svg.select(`.${O.selectedTimestampCursor}`);