diff --git a/src/stores/timelines.js b/src/stores/timelines.js index df1c41a69..34fc57f79 100644 --- a/src/stores/timelines.js +++ b/src/stores/timelines.js @@ -149,6 +149,16 @@ export const useTimelinesStore = defineStore('timelines', { this[timelineName] = emptyTl(timelineName) }, + clearTimeline(timelineName) { + const timeline = this[timelineName] + + timeline.order = [] + timeline.statusIds = new Set() + timeline.visibleStatusIds = new Set() + timeline.newStatusCount = 0 + timeline.maxId = '' + timeline.minId = '' + }, activatePersistents() { TIMELINES.forEach((name) => { if (this[name].persistent) {